Fix bugs in community flooding and TID forwarding.
[trust_router.git] / Makefile.am
1 DISTCHECK_CONFIGURE_FLAGS = \
2         --with-systemdsystemunitdir=$$dc_install_base/$(systemdsystemunitdir)
3 bin_PROGRAMS= tr/trust_router tr/trpc tid/example/tidc tid/example/tids common/tests/tr_dh_test common/tests/mq_test common/tests/thread_test trp/msgtst trp/test/rtbl_test trp/test/ptbl_test common/tests/cfg_test common/tests/commtest
4 AM_CPPFLAGS=-I$(srcdir)/include $(GLIB_CFLAGS)
5 AM_CFLAGS = -Wall -Werror=missing-prototypes -Werror -Wno-parentheses $(GLIB_CFLAGS)
6 SUBDIRS = gsscon 
7 common_srcs = common/tr_name.c \
8         common/tr_constraint.c \
9         common/jansson_iterators.h \
10         common/tr_msg.c \
11         common/tr_dh.c \
12         common/tr_debug.c \
13         common/tr_util.c \
14         common/tr_apc.c \
15         common/tr_comm.c \
16         common/tr_rp.c \
17         common/tr_idp.c \
18         common/tr_filter.c \
19         common/tr_gss.c
20
21 tid_srcs = tid/tid_resp.c \
22 tid/tid_req.c \
23 tid/tids.c \
24 tid/tidc.c
25
26 trp_srcs = trp/trp_conn.c \
27 trp/trps.c \
28 trp/trpc.c \
29 trp/trp_ptable.c \
30 trp/trp_rtable.c \
31 trp/trp_req.c \
32 trp/trp_upd.c \
33 common/tr_config.c \
34 common/tr_mq.c
35
36 check_PROGRAMS = common/t_constraint
37 TESTS = common/t_constraint
38
39 #lib_LTLIBRARIES = libtr_tid.la
40
41 # libtr_tid_la_SOURCES = $(tid_srcs) \
42 # $(common_srcs) \
43 # trp/trp_req.c \
44 # trp/trp_upd.c
45
46 # libtr_tid_la_CFLAGS = $(AM_CFLAGS) -fvisibility=hidden
47 # libtr_tid_la_LIBADD = gsscon/libgsscon.la $(GLIB_LIBS)
48 # libtr_tid_la_LDFLAGS = $(AM_LDFLAGS) -version-info 2 -no-undefined
49
50 common_t_constraint_SOURCES = common/t_constraint.c \
51 common/tr_debug.c \
52 common/tr_name.c \
53 common/tr_constraint.c \
54 tid/tid_req.c \
55 tid/tid_resp.c
56
57 common_t_constraint_CPPFLAGS = $(AM_CPPFLAGS) -DTESTS=\"$(srcdir)/common/tests.json\"
58 common_t_constraint_LDADD = gsscon/libgsscon.la 
59
60 tr_trust_router_SOURCES =tr/tr_main.c \
61 tr/tr.c \
62 tr/tr_event.c \
63 tr/tr_cfgwatch.c \
64 tr/tr_tid.c \
65 tr/tr_trp.c \
66 $(tid_srcs) \
67 $(trp_srcs) \
68 $(common_srcs)
69
70 tr_trust_router_CFLAGS = $(AM_CFLAGS) -pthread
71 tr_trust_router_LDFLAGS = $(AM_LDFLAGS) -levent_pthreads -pthread
72 #tr_trust_router_LDADD = gsscon/libgsscon.la libtr_tid.la $(GLIB_LIBS)
73 tr_trust_router_LDADD = gsscon/libgsscon.la $(GLIB_LIBS)
74
75 tr_trpc_SOURCES =tr/trpc_main.c \
76 tr/tr_trp.c \
77 $(trp_srcs)
78 tr_trpc_LDADD = gsscon/libgsscon.la libtr_tid.la $(GLIB_LIBS)
79 tr_trpc_LDFLAGS = $(AM_LDFLAGS) -pthread
80 tr_trpc_CFLAGS = $(AM_CFLAGS) -pthread
81
82 trp_msgtst_SOURCES = trp/msgtst.c \
83 common/tr_msg.c \
84 common/tr_comm.c \
85 common/tr_apc.c \
86 common/tr_rp.c \
87 common/tr_idp.c \
88 common/tr_gss.c \
89 common/tr_filter.c \
90 trp/trp_req.c \
91 trp/trp_upd.c \
92 tid/tid_resp.c \
93 tid/tid_req.c
94 trp_msgtst_LDADD = libtr_tid.la $(GLIB_LIBS)
95
96 trp_test_rtbl_test_SOURCES = trp/test/rtbl_test.c \
97 common/tr_name.c \
98 common/tr_gss.c \
99 common/tr_debug.c \
100 trp/trp_rtable.c
101 trp_test_rtbl_test_LDADD =  $(GLIB_LIBS)
102
103 trp_test_ptbl_test_SOURCES = trp/test/ptbl_test.c \
104 $(trp_srcs) 
105 trp_test_ptbl_test_LDADD = gsscon/libgsscon.la libtr_tid.la $(GLIB_LIBS)
106
107 tid_example_tidc_SOURCES = tid/example/tidc_main.c
108 tid_example_tidc_LDADD = gsscon/libgsscon.la libtr_tid.la $(GLIB_LIBS)
109
110 tid_example_tids_SOURCES = tid/example/tids_main.c
111 tid_example_tids_LDADD = gsscon/libgsscon.la libtr_tid.la $(GLIB_LIBS)
112
113 common_tests_tr_dh_test_SOURCES = common/tr_dh.c \
114 common/tr_debug.c \
115 common/tests/dh_test.c
116
117 common_tests_mq_test_SOURCES = common/tr_mq.c \
118 common/tests/mq_test.c
119
120 common_tests_mq_test_CFLAGS = -pthread
121 common_tests_mq_test_LDFLAGS = $(AM_LDFLAGS) -ltalloc
122
123 common_tests_cfg_test_SOURCES = common/tests/cfg_test.c \
124 $(trp_srcs)
125
126 common_tests_cfg_test_LDADD = gsscon/libgsscon.la libtr_tid.la $(GLIB_LIBS)
127 common_tests_cfg_test_CFLAGS = -pthread
128 common_tests_cfg_test_LDFLAGS = $(AM_LDFLAGS) -ltalloc
129
130 common_tests_thread_test_SOURCES = common/tr_mq.c \
131 common/tr_debug.c \
132 common/tests/thread_test.c
133
134 common_tests_thread_test_CFLAGS = -pthread
135 common_tests_thread_test_LDFLAGS = $(AM_LDFLAGS) -ltalloc
136
137 # common_tests_commtest_SOURCES = common/tests/commtest.c \
138 # $(trp_srcs)
139 # common_tests_commtest_LDADD = gsscon/libgsscon.la libtr_tid.la $(GLIB_LIBS)
140 # common_tests_commtest_CFLAGS = -pthread
141 # common_test_commtest_LDFLAGS = $(AM_LDFLAGS) -ltalloc
142
143 pkginclude_HEADERS = include/trust_router/tid.h include/trust_router/tr_name.h \
144         include/tr_debug.h \
145         include/trust_router/tr_dh.h \
146         include/trust_router/tr_constraint.h \
147         include/trust_router/tr_versioning.h 
148
149 noinst_HEADERS = include/gsscon.h include/tr_config.h \
150         include/tr_msg.h include/tr.h \
151         include/tr_idp.h include/tr_rp.h \
152         include/tr_comm.h include/tr_apc.h \
153         include/tr_tid.h include/tr_trp.h \
154         include/tr_filter.h \
155         include/tid_internal.h
156
157 pkgdata_DATA=schema.sql
158 nobase_dist_pkgdata_DATA=redhat/init redhat/sysconfig redhat/trusts.cfg redhat/tidc-wrapper redhat/trust_router-wrapper redhat/tr-test-main.cfg redhat/default-main.cfg redhat/tids-wrapper redhat/sysconfig.tids
159
160 if HAVE_SYSTEMD
161 systemdsystemunit_DATA = tids.service
162 endif
163
164 EXTRA_DIST = trust_router.spec common/tests.json schema.sql tids.service \
165         tr/manual.cfg tr/portal.cfg \
166         redhat/tids.init