summaryrefslogtreecommitdiff
path: root/server/src/macrotool/Makefile.am
blob: 061b904581d05a2e8eb5ca15f5ed28577340b551 (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

bin_PROGRAMS = macrotool

macrotool_LDADD = $(LD_EFENCE) $(PQXX_LIBS) $(CONFIG_LIBS) \
	$(LUA_LIBS) $(PTHREAD_LIBS) $(EXPAT_LIBS)

macrotool_CXXFLAGS = -I.. $(PQXX_CXXFLAGS) $(CONFIG_CXXFLAGS) \
	$(LUA_CFLAGS) $(PTHREAD_CFLAGS) $(EXPAT_CFLAGS)

macrotool_SOURCES = \
	macrotool.cc \
	dump.cc \
	export.cc \
	fieldnames.cc \
	fieldnamescanner.cc \
	filehandler.cc \
	util.cc \
	../debug.cc \
	../configuration.cc \
	../configurationparser.cc \
	../database.cc \
	../entitylist.cc \
	../exception.cc \
	../inotify.cc \
	../log.cc \
	../macroheaderparser.cc \
	../macrolist.cc \
	../macroparser.cc \
	../mutex.cc \
	../pracrodao.cc \
	../pracrodaopgsql.cc \
	../pracrodaotest.cc \
	../saxparser.cc \
	../templateparser.cc \
	../versionstr.cc

EXTRA_DIST = \
	dump.h \
	export.h \
	fieldnames.h \
	fieldnamescanner.h \
	filehandler.h \
	util.h

################
# Test Section #
################

TEST_SOURCE_DEPS = ${macrotool_SOURCES} ${EXTRA_DIST}
TEST_SCRIPT_DIR = $(top_srcdir)/../tools

include ${TEST_SCRIPT_DIR}/Makefile.am.test

include Makefile.am.test