blob: e6fdc947040988ede92f924021c9dc09ba12f174 (
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
|
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_CXXFLAGS) $(PTHREAD_CFLAGS) $(EXPAT_CFLAGS)
macrotool_SOURCES = \
macrotool.cc \
macrotool_dump.cc \
macrotool_fieldnames.cc \
macrotool_filehandler.cc \
macrotool_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 = \
macrotool_dump.h \
macrotool_fieldnames.h \
macrotool_filehandler.h \
macrotool_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
|