blob: 781422d57a4fda2f370e4455e260160e8d081e16 (
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
|
SUBDIRS =
bin_PROGRAMS = muniad
muniad_LDADD = $(LIBWEBSOCKETS_LIBS) $(EXPAT_LIBS)
muniad_CXXFLAGS = $(LIBWEBSOCKETS_CFLAGS) $(EXPAT_CFLAGS) -I/usr/local/include
muniad_SOURCES = \
muniad.cc \
connectionhandler.cc \
debug.cc \
log.cc \
http.cc \
messageparser.cc \
saxparser.cc \
task.cc \
task_proto.cc \
observe_proto.cc \
xml_encode_decode.cc \
xmlparser.cc
EXTRA_DIST = \
debug.h \
connectionhandler.h \
log.h \
http.h \
messageparser.h \
saxparser.h \
task.h \
task_proto.h \
observe_proto.h \
xml_encode_decode.h \
xmlparser.h
################
# Test Section #
################
TEST_SOURCE_DEPS = ${muniad_SOURCES} ${EXTRA_DIST}
TEST_SCRIPT_DIR = $(top_srcdir)/tools
include ${TEST_SCRIPT_DIR}/Makefile.am.test
include Makefile.am.test
|