1
0
Fork 0
flightgear/utils/xmlgrep/Makefile.am
ehofman fc0b771cdf * Implement a node cache that can be enabled at compile time.
the node cache prevents recursively walking the xml tree over and over
    again to find the specified nodes.
2009-06-03 00:18:55 +02:00

18 lines
445 B
Makefile

noinst_HEADERS = xml_cache.h xml.h
noinst_LIBRARIES = libxmlconf.a
libxmlconf_a_SOURCES = xml_cache.c xml.c
noinst_PROGRAMS = testxml printxml xmlgrep
testxml_SOURCES = testxml.c
testxml_LDADD = libxmlconf.a
printxml_SOURCES = $(xml_SOURCE) printxml.c
printxml_LDADD = libxmlconf.a
xmlgrep_SOURCES = $(xml_SOURCE) xmlgrep.c xml.c xml.h
xmlgrep_LDADD = libxmlconf.a
INCLUDES = -DSRC_DIR=\"$(top_srcdir)/utils/xmlgrep\" -DXML_USE_NODECACHE