summaryrefslogtreecommitdiff
path: root/ccss/Makefile.am
blob: 4f9b5a4e7ad5a4e075c97388cf85351603f2cd2c (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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87

NULL =

AM_CPPFLAGS = \
	-I$(top_builddir) \
	-I$(top_srcdir) \
	$(CCSS_CFLAGS) \
	-DCCSS_BUILD \
	$(NULL)

lib_LTLIBRARIES = libccss-1.la

libccss_1_la_DEPENDENCIES = \
	ccss.sym \
	$(NULL)

libccss_1_la_LDFLAGS = \
	-no-undefined \
	-version-info $(VERSION_INFO) \
	-export-symbols $(srcdir)/ccss.sym \
	$(NULL)

libccss_1_la_LIBADD = \
	$(CCSS_LIBS) \
	$(NULL)

libccss_1_la_SOURCES = \
	$(headers_DATA) \
	ccss-background-parser.c \
	ccss-background-parser.h \
	ccss-block.c \
	ccss-block-priv.h \
	ccss-border-parser.c \
	ccss-border-parser.h \
	ccss-border-image-parser.c \
	ccss-border-image-parser.h \
	ccss-color-parser.c \
	ccss-grammar.c \
	ccss-grammar-function.c \
	ccss-grammar-parse.c \
	ccss-grammar-priv.h \
	ccss-node.c \
	ccss-node-priv.h \
	ccss-padding-parser.c \
	ccss-padding-parser.h \
	ccss-position.c \
	ccss-position-parser.h \
	ccss-property.c \
	ccss-property-generic.h \
	ccss-property-parser.c \
	ccss-property-parser.h \
	ccss-selector.c \
	ccss-selector-group.c \
	ccss-selector-group.h \
	ccss-selector.h \
	ccss-style.c \
	ccss-style-priv.h \
	ccss-stylesheet.c \
	ccss-stylesheet-priv.h \
	$(NULL)

headersdir = $(includedir)/ccss-1/ccss

headers_DATA = \
	ccss-background.h \
	ccss-block.h \
	ccss-border.h \
	ccss-border-image.h \
	ccss-color.h \
	ccss-color-impl.h \
	ccss-function.h \
	ccss-grammar.h \
	ccss.h \
	ccss-macros.h \
	ccss-node.h \
	ccss-padding.h \
	ccss-position.h \
	ccss-property.h \
	ccss-property-impl.h \
	ccss-style.h \
	ccss-stylesheet.h \
	$(NULL)

EXTRA_DIST = \
	ccss.sym \
	$(NULL)