blob: 97ed49ee8ebffc33c74ffc65df2681c92967c9a0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
|
## Makefile.am fragment sourced by src/Makefile.am.
libcroco/all: libcroco/libcroco.a
libcroco/clean:
rm -f libcroco/libcroco.a $(libcroco_libcroco_a_OBJECTS)
libcroco_libcroco_a_SOURCES = \
libcroco/cr-utils.c \
libcroco/cr-utils.h \
libcroco/cr-input.c \
libcroco/cr-input.h \
libcroco/cr-enc-handler.c \
libcroco/cr-enc-handler.h \
libcroco/cr-num.c \
libcroco/cr-num.h \
libcroco/cr-rgb.c \
libcroco/cr-rgb.h \
libcroco/cr-token.c \
libcroco/cr-token.h \
libcroco/cr-tknzr.c \
libcroco/cr-tknzr.h \
libcroco/cr-term.c \
libcroco/cr-term.h \
libcroco/cr-attr-sel.c \
libcroco/cr-attr-sel.h \
libcroco/cr-pseudo.c \
libcroco/cr-pseudo.h \
libcroco/cr-additional-sel.c \
libcroco/cr-additional-sel.h \
libcroco/cr-simple-sel.c \
libcroco/cr-simple-sel.h \
libcroco/cr-selector.c \
libcroco/cr-selector.h \
libcroco/cr-doc-handler.c \
libcroco/cr-doc-handler.h \
libcroco/cr-parser.c \
libcroco/cr-parser.h \
libcroco/cr-declaration.c \
libcroco/cr-declaration.h \
libcroco/cr-statement.c \
libcroco/cr-statement.h \
libcroco/cr-stylesheet.c \
libcroco/cr-stylesheet.h \
libcroco/cr-cascade.c \
libcroco/cr-cascade.h \
libcroco/cr-om-parser.c \
libcroco/cr-om-parser.h \
libcroco/cr-style.c \
libcroco/cr-style.h \
libcroco/cr-libxml-node-iface.c \
libcroco/cr-libxml-node-iface.h \
libcroco/cr-node-iface.h \
libcroco/cr-sel-eng.c \
libcroco/cr-sel-eng.h \
libcroco/cr-fonts.c \
libcroco/cr-fonts.h \
libcroco/cr-prop-list.c \
libcroco/cr-prop-list.h \
libcroco/cr-parsing-location.c \
libcroco/cr-parsing-location.h \
libcroco/cr-string.c \
libcroco/cr-string.h \
libcroco/libcroco.h
|