1AM_CPPFLAGS= -I$(gwenhywfar_symlinkdir) \
2 -I$(top_srcdir)/src/base \
3 -I$(top_srcdir)/src/os \
4 -I$(top_srcdir)/src/parser @all_includes@
5
6AM_CFLAGS=@visibility_cflags@ @WERROR@ -DBUILDING_GWENHYWFAR
7
8typefiles=url.xml
9EXTRA_DIST=$(typefiles) dbrw.c xmlrw.c xmlglobalize.c README.xml2db
10
11noinst_LTLIBRARIES=libparser.la
12
13noinst_HEADERS=\
14 db_p.h \
15 dbio_l.h \
16 dbio_p.h \
17 configmgr_l.h \
18 configmgr_p.h \
19 msgengine_p.h \
20 tag16_p.h \
21 tlv_p.h \
22 url_l.h \
23 url_p.h \
24 xml_p.h \
25 xml_l.h \
26 xmlctx_l.h \
27 xmlctx_p.h \
28 xsdnode_l.h \
29 xsdnode_p.h
30
31iheaderdir=$(gwenhywfar_headerdir_am)/gwenhywfar
32iheader_HEADERS=\
33 base64.h \
34 configmgr.h \
35 configmgr_be.h \
36 db.h \
37 dbio.h \
38 dbio_be.h \
39 msgengine.h \
40 path.h \
41 tag16.h \
42 text.h \
43 tlv.h \
44 url.h urlfns.h \
45 xml.h \
46 xmlctx.h \
47 xsdnode.h \
48 xml2db.h
49
50libparser_la_SOURCES=\
51 base64.c \
52 configmgr.c \
53 db.c \
54 dbio.c \
55 msgengine.c \
56 path.c \
57 tag16.c \
58 text.c \
59 tlv.c \
60 url.c urlfns.c \
61 xml.c \
62 xmlctx.c \
63 xsdnode.c \
64 xml2db.c
65
66
67
68sources:
69	for f in $(libparser_la_SOURCES); do \
70	  echo $(subdir)/$$f >>$(top_srcdir)/i18nsources; \
71	done
72	for d in $(SUBDIRS); do \
73	  make -C $$d sources; \
74	done
75
76
77