blob: 3a7928bd63d9190dd00203450d5591e65e21cf73 (
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
|
lib_LTLIBRARIES=libcroco.la
crocoincdir=$(includedir)/@PACKAGE@
crocoinc_HEADERS= *.h
libcroco_la_SOURCES= \
cr-utils.c \
cr-input.c \
cr-enc-handler.c \
cr-num.c \
cr-rgb.c \
cr-token.c \
cr-tknzr.c \
cr-term.c \
cr-attr-sel.c \
cr-pseudo.c \
cr-additional-sel.c \
cr-simple-sel.c \
cr-selector.c \
cr-doc-handler.c \
cr-parser.c \
cr-declaration.c \
cr-statement.c \
cr-stylesheet.c \
cr-om-parser.c \
cr-sel-eng.c \
*.h
INCLUDES=-I$(top_srcdir) -I$(top_srcdir)/intl `pkg-config --cflags glib-2.0` `pkg-config --cflags libxml-2.0` @LIBXML2_CFLAGS@
libcroco_la_LDFLAGS=-version-info @LIBCROCO_VERSION_INFO@ @LIBXML2_LIBS@
|