merge branch 'refactoring-scheduler'
[oweals/gnunet.git] / src / rps / Makefile.am
1 # This Makefile.am is in the public domain
2 AM_CPPFLAGS = -I$(top_srcdir)/src/include
3
4 if MINGW
5  WINFLAGS = -Wl,--no-undefined -Wl,--export-all-symbols
6 endif
7
8 if USE_COVERAGE
9   AM_CFLAGS = --coverage -O0
10   XLIB = -lgcov
11 endif
12
13 pkgcfgdir= $(pkgdatadir)/config.d/
14
15 libexecdir= $(pkglibdir)/libexec/
16
17 pkgcfg_DATA = \
18   rps.conf
19
20 bin_PROGRAMS = gnunet-rps
21
22 gnunet_rps_SOURCES = gnunet-rps.c
23 gnunet_rps_LDADD = \
24   libgnunetrps.la \
25   $(top_builddir)/src/util/libgnunetutil.la \
26   $(XLIB) $(GN_LIBINTL)
27
28 lib_LTLIBRARIES = libgnunetrps.la
29
30 libgnunetrps_la_SOURCES = \
31   rps_api.c rps.h
32 libgnunetrps_la_LIBADD = \
33   $(top_builddir)/src/util/libgnunetutil.la \
34   $(GN_LIBINTL) $(XLIB)
35 libgnunetrps_la_LDFLAGS = \
36   $(GN_LIB_LDFLAGS)  $(WINFLAGS) \
37   -version-info 0:0:0
38
39
40 libexec_PROGRAMS = \
41  gnunet-service-rps
42
43 if HAVE_TESTING
44 noinst_PROGRAMS = \
45  gnunet-rps-profiler
46 endif
47
48
49 gnunet_service_rps_SOURCES = \
50  gnunet-service-rps_sampler_elem.h gnunet-service-rps_sampler_elem.c \
51  gnunet-service-rps_sampler.h gnunet-service-rps_sampler.c \
52  gnunet-service-rps_custommap.h gnunet-service-rps_custommap.c \
53  gnunet-service-rps_view.h gnunet-service-rps_view.c \
54  rps-test_util.h rps-test_util.c \
55  gnunet-service-rps.c
56
57
58 gnunet_service_rps_LDADD = \
59   libgnunetrps.la \
60   $(top_builddir)/src/util/libgnunetutil.la \
61   $(top_builddir)/src/peerinfo/libgnunetpeerinfo.la \
62   $(top_builddir)/src/cadet/libgnunetcadet.la \
63   $(top_builddir)/src/peerinfo/libgnunetpeerinfo.la \
64   $(top_builddir)/src/nse/libgnunetnse.la \
65   $(top_builddir)/src/statistics/libgnunetstatistics.la \
66   $(LIBGCRYPT_LIBS) \
67   -lm -lgcrypt \
68   $(GN_LIBINTL)
69
70
71 if HAVE_TESTING
72 check_PROGRAMS = \
73  test_service_rps_view \
74  test_service_rps_custommap \
75  test_service_rps_sampler_elem \
76  test_rps_malicious_1 \
77  test_rps_malicious_2 \
78  test_rps_malicious_3 \
79  test_rps_seed_request \
80  test_rps_single_req \
81  test_rps_req_cancel \
82  test_rps_seed_big \
83  test_rps_churn
84 endif
85
86 ld_rps_test_lib = \
87         libgnunetrps.la \
88   $(top_builddir)/src/util/libgnunetutil.la \
89   $(top_builddir)/src/testbed/libgnunettestbed.la \
90   -lm
91
92 rps_test_src = \
93         test_rps.c \
94         rps-test_util.h rps-test_util.c \
95  gnunet-service-rps_sampler_elem.h gnunet-service-rps_sampler_elem.c
96
97 if ENABLE_TEST_RUN
98 AM_TESTS_ENVIRONMENT=export GNUNET_PREFIX=$${GNUNET_PREFIX:-@libdir@};export PATH=$${GNUNET_PREFIX:-@prefix@}/bin:$$PATH;unset XDG_DATA_HOME;unset XDG_CONFIG_HOME;
99 TESTS = $(check_PROGRAMS)
100 endif
101
102 test_service_rps_view_SOURCES = \
103   gnunet-service-rps_view.h gnunet-service-rps_view.c \
104   test_service_rps_view.c
105 test_service_rps_view_LDADD = $(top_builddir)/src/util/libgnunetutil.la
106
107 test_service_rps_custommap_SOURCES = \
108   gnunet-service-rps_custommap.h gnunet-service-rps_custommap.c \
109   test_service_rps_custommap.c
110 test_service_rps_custommap_LDADD = \
111   $(top_builddir)/src/util/libgnunetutil.la
112
113 test_service_rps_sampler_elem_SOURCES = \
114   gnunet-service-rps_sampler_elem.h gnunet-service-rps_sampler_elem.c \
115   rps-test_util.h rps-test_util.c \
116   test_service_rps_sampler_elem.c
117 test_service_rps_sampler_elem_LDADD = $(top_builddir)/src/util/libgnunetutil.la
118
119 test_rps_malicious_1_SOURCES = $(rps_test_src)
120 test_rps_malicious_1_LDADD = $(ld_rps_test_lib)
121
122 test_rps_malicious_2_SOURCES = $(rps_test_src)
123 test_rps_malicious_2_LDADD = $(ld_rps_test_lib)
124
125 test_rps_malicious_3_SOURCES = $(rps_test_src)
126 test_rps_malicious_3_LDADD = $(ld_rps_test_lib)
127
128 test_rps_single_req_SOURCES = $(rps_test_src)
129 test_rps_single_req_LDADD = $(ld_rps_test_lib)
130
131 test_rps_seed_request_SOURCES = $(rps_test_src)
132 test_rps_seed_request_LDADD = $(ld_rps_test_lib)
133
134 test_rps_req_cancel_SOURCES = $(rps_test_src)
135 test_rps_req_cancel_LDADD = $(ld_rps_test_lib)
136
137 test_rps_seed_big_SOURCES = $(rps_test_src)
138 test_rps_seed_big_LDADD = $(ld_rps_test_lib)
139
140 test_rps_churn_SOURCES = $(rps_test_src)
141 test_rps_churn_LDADD = $(ld_rps_test_lib)
142
143 gnunet_rps_profiler_SOURCES = $(rps_test_src)
144 gnunet_rps_profiler_LDADD = $(ld_rps_test_lib)
145
146 EXTRA_DIST = \
147   test_rps.conf