bin_PROGRAMS = pracrod macrotool pracrod_LDADD = $(LD_EFENCE) $(PQXX_LIBS) $(CONFIG_LIBS) $(LUA_LIBS) -lpthread pracrod_CXXFLAGS = $(PQXX_CXXFLAGS) $(CONFIG_CXXFLAGS) $(LUA_CXXFLAGS) pracrod_SOURCES = \ pracrod.cc \ daemon.cc \ database.cc \ configuration.cc \ configurationparser.cc \ debug.cc \ exception.cc \ queryhandlerpentominos.cc \ queryhandlerpracro.cc \ queryparser.cc \ journal_commit.cc \ log.cc \ luaquerymapper.cc \ luaresume.cc \ macroparser.cc \ pracrodao.cc \ pracrodaopgsql.cc \ resumeparser.cc \ saxparser.cc \ server.cc \ templateparser.cc \ transactionparser.cc \ tcpsocket.cc \ utf8.cc \ widgetgenerator.cc \ xml_encode_decode.cc macrotool_LDADD = $(LD_EFENCE) $(PQXX_LIBS) $(CONFIG_LIBS) $(LUA_LIBS) -lpthread macrotool_CXXFLAGS = $(PQXX_CXXFLAGS) $(CONFIG_CXXFLAGS) $(LUA_CXXFLAGS) macrotool_SOURCES = \ macrotool.cc \ debug.cc \ configuration.cc \ configurationparser.cc \ database.cc \ exception.cc \ log.cc \ macroparser.cc \ macrotool_dump.cc \ macrotool_fieldnames.cc \ macrotool_filehandler.cc \ macrotool_util.cc \ pracrodao.cc \ pracrodaopgsql.cc \ saxparser.cc \ templateparser.cc EXTRA_DIST = \ configuration.h \ configurationparser.h \ daemon.h \ database.h \ dbtypes.h \ debug.h \ exception.h \ queryhandler.h \ queryhandlerpentominos.h \ queryhandlerpracro.h \ queryparser.h \ journal_commit.h \ log.h \ luaquerymapper.h \ luaresume.h \ macroparser.h \ macrotool_dump.h \ macrotool_fieldnames.h \ macrotool_filehandler.h \ macrotool_util.h \ pracrodao.h \ pracrodaopgsql.h \ resumeparser.h \ saxparser.h \ server.h \ templateparser.h \ transactionparser.h \ tcpsocket.h \ utf8.h \ widgetgenerator.h \ xml_encode_decode.h TESTFILES = \ test_queryhandlerpentominos \ test_queryhandlerpracro \ test_queryparser \ test_luaquerymapper \ test_templateparser \ test_server \ test_database \ test_macroparser \ test_xml_encode_decode \ test_journal_commit TESTLOGS = `for F in ${TESTFILES}; do echo $$F.log; done` test: $(TESTFILES) @echo "All tests done." test_clean: rm -f $(TESTFILES) test_queryhandlerpentominos: queryhandlerpentominos.cc @../../tools/test queryhandlerpentominos.cc tcpsocket.cc exception.cc log.cc test_queryhandlerpracro: queryhandlerpracro.cc @../../tools/test queryhandlerpracro.cc tcpsocket.cc exception.cc log.cc test_queryparser: queryparser.cc @../../tools/test queryparser.cc queryhandler.cc tcpsocket.cc exception.cc log.cc saxparser.cc -lexpat test_luaquerymapper: luaquerymapper.cc @../../tools/test luaquerymapper.cc queryparser.cc queryhandler.cc tcpsocket.cc exception.cc log.cc saxparser.cc -lexpat $(LUA_LIBS) test_templateparser: templateparser.cc @../../tools/test templateparser.cc saxparser.cc exception.cc log.cc -lexpat -DXML="\"../xml\"" test_macroparser: macroparser.cc @../../tools/test macroparser.cc saxparser.cc exception.cc log.cc -lexpat -DXML="\"../xml\"" test_server: server.cc @../../tools/test server.cc templateparser.cc saxparser.cc queryparser.cc queryhandler.cc luaquerymapper.cc tcpsocket.cc exception.cc log.cc configuration.cc transactionparser.cc widgetgenerator.cc database.cc macroparser.cc xml_encode_decode.cc -lexpat $(LUA_LIBS) $(CONFIG_LIBS) $(PQXX_LIBS) $(PQXX_CXXFLAGS) -DXML="\"../xml\"" #killall -9 test_server test_database: database.cc @../../tools/test database.cc $(PQXX_LIBS) $(PQXX_CXXFLAGS) -I.. test_xml_encode_decode: xml_encode_decode.cc @../../tools/test xml_encode_decode.cc test_journal_commit: journal_commit.cc @../../tools/test journal_commit.cc debug.cc -I.. CLEANFILES = $(TESTFILES) $(TESTLOGS) *~