blob: 02c0fe0875b4ce35db2578d70b9edaafccb966f2 (
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
|
SUBDIRS =
bin_PROGRAMS = muniad muniacli
muniad_LDADD = $(LIBWEBSOCKETS_LIBS) $(EXPAT_LIBS)
muniad_CXXFLAGS = $(LIBWEBSOCKETS_CFLAGS) $(EXPAT_CFLAGS) -I../hugin \
-I/usr/local/include
muniad_SOURCES = \
muniad.cc \
connectionhandler.cc \
http.cc \
messagehandler.cc \
messageparser.cc \
munia_proto.cc \
saxparser.cc \
task.cc \
taskmanager.cc \
tasktree.cc \
testclient.cc \
xml_encode_decode.cc \
xmlparser.cc \
../hugin/hugin.c
muniacli_LDADD = $(LIBWEBSOCKETS_LIBS)
muniacli_CXXFLAGS = $(LIBWEBSOCKETS_CFLAGS) -I../hugin
muniacli_SOURCES = \
muniacli.cc
EXTRA_DIST = \
connectionhandler.h \
http.h \
message.h \
messageparser.h \
messagehandler.h \
munia_proto.h \
saxparser.h \
task.h \
taskmanager.h \
tasktree.h \
testclient.h \
xml_encode_decode.h \
xmlparser.h \
../hugin/hugin.h
|