blob: 4d64067ba4e2f93d771be9fcd7c477248bc257c8 (
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
|
bin_PROGRAMS = pracrod
pracrod_LDADD = $(LD_EFENCE) $(PQXX_LIBS) $(CONFIG_LIBS) $(LUA_LIBS)
pracrod_CXXFLAGS = $(PQXX_CXXFLAGS) $(CONFIG_CXXFLAGS) $(LUA_CXXFLAGS)
pracrod_SOURCES = \
pracrod.cc \
daemon.cc \
database.cc \
configuration.cc \
exception.cc \
externaldataqueryhandler.cc \
externaldataqueryparser.cc \
journal_commit.cc \
log.cc \
luaquerymapper.cc \
macro_parser.cc \
resumeparser.cc \
sax_parser.cc \
server.cc \
templateparser.cc \
tcpsocket.cc \
tostring.cc \
uid.cc \
xmlparser.cc
EXTRA_DIST = \
configuration.h \
daemon.h \
database.h \
debug.h \
exception.h \
externaldataqueryhandler.h \
externaldataqueryparser.h \
journal_commit.h \
log.h \
luaquerymapper.h \
macro.h \
macro_parser.h \
resumeparser.h \
sax_parser.h \
server.h \
templateparser.h \
tcpsocket.h \
tostring.h \
uid.h \
xmlparser.h
|