Fix typos in filenames.
[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 3 -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_LDFLAGS = $(AM_LDFLAGS) -levent_pthreads -pthread
71 tr_trust_router_LDADD = gsscon/libgsscon.la $(GLIB_LIBS)
72 tr_trpc_SOURCES =tr/trpc_main.c \
73 tr/tr_trp.c \
74 $(trp_srcs) \
75 $(tid_srcs) \
76 $(common_srcs)
77
78 tr_trpc_LDADD = gsscon/libgsscon.la $(GLIB_LIBS)
79 tr_trpc_LDFLAGS = $(AM_LDFLAGS) -pthread
80
81 trp_msgtst_SOURCES = trp/msgtst.c \
82 $(common_srcs) \
83 trp/trp_req.c \
84 trp/trp_upd.c \
85 tid/tid_resp.c \
86 tid/tid_req.c
87 trp_msgtst_LDADD =  $(GLIB_LIBS)
88
89 trp_test_rtbl_test_SOURCES = trp/test/rtbl_test.c \
90 common/tr_name.c \
91 common/tr_gss.c \
92 common/tr_debug.c \
93 trp/trp_rtable.c
94 trp_test_rtbl_test_LDADD =  $(GLIB_LIBS)
95
96 trp_test_ptbl_test_SOURCES = trp/test/ptbl_test.c \
97 $(tid_srcs) \
98 $(trp_srcs) \
99 $(common_srcs)
100 trp_test_ptbl_test_LDADD = gsscon/libgsscon.la $(GLIB_LIBS)
101 trp_test_ptbl_test_LDFLAGS = $(AM_LDFLAGS) -pthread
102
103 tid_example_tidc_SOURCES = tid/example/tidc_main.c \
104 $(tid_srcs) \
105 $(trp_srcs) \
106 $(common_srcs)
107 tid_example_tidc_LDADD = gsscon/libgsscon.la  $(GLIB_LIBS)
108 tid_example_tidc_LDFLAGS = $(AM_LDFLAGS) -pthread
109
110 tid_example_tids_SOURCES = tid/example/tids_main.c \
111 $(tid_srcs) \
112 $(trp_srcs) \
113 $(common_srcs)
114 tid_example_tids_LDADD = gsscon/libgsscon.la  $(GLIB_LIBS)
115 tid_example_tids_LDFLAGS = $(AM_LDFLAGS) -pthread
116
117 common_tests_tr_dh_test_SOURCES = common/tr_dh.c \
118 common/tr_debug.c \
119 common/tests/dh_test.c
120
121 common_tests_mq_test_SOURCES = common/tr_mq.c \
122 common/tests/mq_test.c \
123 common/tr_debug.c
124
125 common_tests_mq_test_LDFLAGS = $(AM_LDFLAGS) -ltalloc -pthread
126
127 common_tests_cfg_test_SOURCES = common/tests/cfg_test.c \
128 $(common_srcs) \
129 $(tid_srcs) \
130 $(trp_srcs)
131 common_tests_cfg_test_LDADD = gsscon/libgsscon.la  $(GLIB_LIBS)
132 common_tests_cfg_test_LDFLAGS = $(AM_LDFLAGS) -ltalloc -pthread
133
134 common_tests_thread_test_SOURCES = common/tr_mq.c \
135 common/tr_debug.c \
136 common/tests/thread_test.c
137
138 common_tests_commtest_SOURCES = common/tests/commtest.c \
139 $(common_srcs) \
140 $(tid_srcs) \
141 $(trp_srcs)
142 common_tests_commtest_LDADD = gsscon/libgsscon.la $(GLIB_LIBS)
143 common_tests_commtest_LDFLAGS = $(AM_LDFLAGS) -ltalloc -pthread
144
145 common_tests_thread_test_LDFLAGS = $(AM_LDFLAGS) -ltalloc -pthread
146
147 pkginclude_HEADERS = include/trust_router/tid.h include/trust_router/tr_name.h \
148         include/tr_debug.h include/trust_router/trp.h \
149         include/trust_router/tr_dh.h \
150         include/trust_router/tr_constraint.h \
151         include/trust_router/tr_versioning.h 
152
153 noinst_HEADERS = include/gsscon.h include/tr_config.h \
154         include/tr_msg.h include/tr.h \
155         include/tr_idp.h include/tr_rp.h \
156         include/tr_comm.h include/tr_apc.h \
157         include/tr_tid.h include/tr_trp.h \
158         include/tr_filter.h include/tr_gss.h \
159         include/tid_internal.h include/trp_internal.h \
160         include/tr_cfgwatch.h include/tr_event.h \
161         include/tr_mq.h include/trp_ptable.h \
162         include/trp_rtable.h include/tr_util.h
163
164 pkgdata_DATA=schema.sql
165 nobase_dist_pkgdata_DATA=redhat/init redhat/sysconfig redhat/organizations.cfg redhat/tidc-wrapper redhat/trust_router-wrapper redhat/tr-test-internal.cfg redhat/default-internal.cfg redhat/tids-wrapper redhat/sysconfig.tids
166
167 if HAVE_SYSTEMD
168 systemdsystemunit_DATA = tids.service
169 endif
170
171 EXTRA_DIST = trust_router.spec common/tests.json schema.sql tids.service \
172         tr/internal.cfg tr/organizations.cfg \
173         redhat/tids.init