removing tests: not required anymore
[oweals/gnunet.git] / src / namestore / Makefile.am
1 INCLUDES = -I$(top_srcdir)/src/include
2
3 plugindir = $(libdir)/gnunet
4
5 pkgcfgdir= $(pkgdatadir)/config.d/
6
7 libexecdir= $(pkglibdir)/libexec/
8
9 pkgcfg_DATA = \
10    namestore.conf
11
12
13 if MINGW
14   WINFLAGS = -Wl,--no-undefined -Wl,--export-all-symbols
15 endif
16
17 if USE_COVERAGE
18   AM_CFLAGS = --coverage -O0
19   XLIBS = -lgcov
20 endif
21
22 if HAVE_SQLITE
23 SQLITE_PLUGIN = libgnunet_plugin_namestore_sqlite.la
24 if HAVE_TESTING
25 SQLITE_TESTS = test_plugin_namestore_sqlite 
26 endif
27 endif
28
29 if HAVE_POSTGRES
30 # postgres doesn't even build yet; thus: experimental!
31 if HAVE_EXPERIMENTAL
32 POSTGRES_PLUGIN = libgnunet_plugin_namestore_postgres.la
33 if HAVE_TESTING
34 POSTGRES_TESTS = test_plugin_namestore_postgres
35 endif
36 endif
37 endif
38
39 # testcases do not even build yet; thus: experimental!
40 if HAVE_EXPERIMENTAL
41
42 if HAVE_TESTING
43 TESTING_TESTS = \
44  test_namestore_api_store \
45  test_namestore_api_store_update \
46  test_namestore_api_remove \
47  test_namestore_api_zone_iteration \
48  test_namestore_api_zone_iteration_specific_zone \
49  test_namestore_api_zone_iteration_stop \
50  test_namestore_api_monitoring \
51  test_namestore_api_monitoring_existing
52 #test_namestore_api_remove_not_existing_record 
53 #test_namestore_api_zone_to_name  
54 endif
55
56 if HAVE_SQLITE
57 check_PROGRAMS = \
58  test_namestore_record_serialization \
59  test_namestore_api_blocks \
60  $(SQLITE_TESTS) \
61  $(POSTGRES_TESTS) \
62  $(TESTING_TESTS)
63 endif
64
65 # end of 'HAVE_EXPERIMENTAL' for testcases 
66 endif
67
68 if ENABLE_TEST_RUN
69 TESTS = $(check_PROGRAMS)
70 endif
71
72 lib_LTLIBRARIES = \
73   libgnunetnamestore.la
74
75 libgnunetnamestore_la_SOURCES = \
76   namestore_api.c \
77   namestore_api_monitor.c \
78   namestore_api_common.c \
79   namestore.h
80 libgnunetnamestore_la_LIBADD = \
81   $(top_builddir)/src/statistics/libgnunetstatistics.la \
82   $(top_builddir)/src/util/libgnunetutil.la \
83   $(GN_LIBINTL) 
84 libgnunetnamestore_la_LDFLAGS = \
85   $(GN_LIB_LDFLAGS) $(WINFLAGS) \
86   -version-info 0:1:0
87
88 libexec_PROGRAMS = \
89  gnunet-service-namestore 
90
91 bin_PROGRAMS = \
92  gnunet-namestore 
93
94 if HAVE_MHD
95 bin_PROGRAMS += \
96  gnunet-namestore-fcfsd
97 endif
98
99 gnunet_namestore_SOURCES = \
100  gnunet-namestore.c 
101 gnunet_namestore_LDADD = \
102   $(top_builddir)/src/util/libgnunetutil.la \
103   $(top_builddir)/src/identity/libgnunetidentity.la \
104   libgnunetnamestore.la \
105   $(GN_LIBINTL)
106 gnunet_namestore_DEPENDENCIES = \
107   $(top_builddir)/src/identity/libgnunetidentity.la \
108   $(top_builddir)/src/util/libgnunetutil.la \
109   libgnunetnamestore.la
110
111
112 gnunet_namestore_fcfsd_SOURCES = \
113  gnunet-namestore-fcfsd.c 
114 gnunet_namestore_fcfsd_LDADD = -lmicrohttpd \
115   $(top_builddir)/src/util/libgnunetutil.la \
116   $(top_builddir)/src/identity/libgnunetidentity.la \
117   $(top_builddir)/src/namestore/libgnunetnamestore.la \
118   $(GN_LIBINTL)
119 gnunet_namestore_fcfsd_DEPENDENCIES = \
120   $(top_builddir)/src/util/libgnunetutil.la \
121   libgnunetnamestore.la
122
123
124
125 gnunet_service_namestore_SOURCES = \
126  gnunet-service-namestore.c
127
128 gnunet_service_namestore_LDADD = \
129   $(top_builddir)/src/statistics/libgnunetstatistics.la \
130   $(top_builddir)/src/util/libgnunetutil.la \
131   libgnunetnamestore.la \
132   $(GN_LIBINTL)
133 gnunet_service_namestore_DEPENDENCIES = \
134   $(top_builddir)/src/statistics/libgnunetstatistics.la \
135   $(top_builddir)/src/util/libgnunetutil.la \
136   libgnunetnamestore.la
137
138
139 plugin_LTLIBRARIES = \
140   $(SQLITE_PLUGIN) \
141   $(POSTGRES_PLUGIN)
142
143 libgnunet_plugin_namestore_sqlite_la_SOURCES = \
144   plugin_namestore_sqlite.c 
145 libgnunet_plugin_namestore_sqlite_la_LIBADD = \
146   $(top_builddir)/src/namestore/libgnunetnamestore.la  \
147   $(top_builddir)/src/statistics/libgnunetstatistics.la \
148   $(top_builddir)/src/util/libgnunetutil.la $(XLIBS) -lsqlite3 \
149   $(LTLIBINTL)
150 libgnunet_plugin_namestore_sqlite_la_LDFLAGS = \
151  $(GN_PLUGIN_LDFLAGS)
152 libgnunet_plugin_namestore_sqlite_la_DEPENDENCIES = \
153   $(top_builddir)/src/statistics/libgnunetstatistics.la \
154   $(top_builddir)/src/util/libgnunetutil.la \
155   libgnunetnamestore.la
156
157
158 libgnunet_plugin_namestore_postgres_la_SOURCES = \
159   plugin_namestore_postgres.c 
160 libgnunet_plugin_namestore_postgres_la_LIBADD = \
161   $(top_builddir)/src/namestore/libgnunetnamestore.la  \
162   $(top_builddir)/src/postgres/libgnunetpostgres.la  \
163   $(top_builddir)/src/statistics/libgnunetstatistics.la \
164   $(top_builddir)/src/util/libgnunetutil.la $(XLIBS) -lpq \
165   $(LTLIBINTL)
166 libgnunet_plugin_namestore_postgres_la_LDFLAGS = \
167  $(GN_PLUGIN_LDFLAGS)
168 libgnunet_plugin_namestore_postgres_la_DEPENDENCIES = \
169   $(top_builddir)/src/postgres/libgnunetpostgres.la  \
170   $(top_builddir)/src/statistics/libgnunetstatistics.la \
171   $(top_builddir)/src/util/libgnunetutil.la \
172   libgnunetnamestore.la
173
174 test_namestore_api_blocks_SOURCES = \
175  test_namestore_api_blocks.c
176 test_namestore_api_blocks_LDADD = \
177   $(top_builddir)/src/util/libgnunetutil.la \
178   $(top_builddir)/src/testing/libgnunettesting.la \
179   $(top_builddir)/src/namestore/libgnunetnamestore.la
180
181 test_namestore_api_store_SOURCES = \
182  test_namestore_api_store.c
183 test_namestore_api_store_LDADD = \
184   $(top_builddir)/src/testing/libgnunettesting.la \
185   $(top_builddir)/src/util/libgnunetutil.la \
186   $(top_builddir)/src/namestore/libgnunetnamestore.la
187
188 test_namestore_api_store_update_SOURCES = \
189  test_namestore_api_store_update.c
190 test_namestore_api_store_update_LDADD = \
191   $(top_builddir)/src/testing/libgnunettesting.la \
192   $(top_builddir)/src/util/libgnunetutil.la \
193   $(top_builddir)/src/namestore/libgnunetnamestore.la
194
195 test_namestore_api_put_SOURCES = \
196  test_namestore_api_put.c
197 test_namestore_api_put_LDADD = \
198   $(top_builddir)/src/testing/libgnunettesting.la \
199   $(top_builddir)/src/util/libgnunetutil.la \
200   $(top_builddir)/src/namestore/libgnunetnamestore.la
201
202 test_namestore_api_remove_SOURCES = \
203  test_namestore_api_remove.c
204 test_namestore_api_remove_LDADD = \
205   $(top_builddir)/src/testing/libgnunettesting.la \
206   $(top_builddir)/src/util/libgnunetutil.la \
207   $(top_builddir)/src/namestore/libgnunetnamestore.la
208
209 test_namestore_api_remove_not_existing_record_SOURCES = \
210  test_namestore_api_remove_not_existing_record.c
211 test_namestore_api_remove_not_existing_record_LDADD = \
212   $(top_builddir)/src/testing/libgnunettesting.la \
213   $(top_builddir)/src/util/libgnunetutil.la \
214   $(top_builddir)/src/namestore/libgnunetnamestore.la
215
216 test_namestore_api_zone_to_name_SOURCES = \
217  test_namestore_api_zone_to_name.c
218 test_namestore_api_zone_to_name_LDADD = \
219   $(top_builddir)/src/testing/libgnunettesting.la \
220   $(top_builddir)/src/util/libgnunetutil.la \
221   $(top_builddir)/src/namestore/libgnunetnamestore.la
222
223 test_namestore_api_monitoring_SOURCES = \
224  test_namestore_api_monitoring.c
225 test_namestore_api_monitoring_LDADD = \
226   $(top_builddir)/src/testing/libgnunettesting.la \
227   $(top_builddir)/src/namestore/libgnunetnamestore.la \
228   $(top_builddir)/src/util/libgnunetutil.la 
229   
230 test_namestore_api_monitoring_existing_SOURCES = \
231  test_namestore_api_monitoring_existing.c
232 test_namestore_api_monitoring_existing_LDADD = \
233   $(top_builddir)/src/testing/libgnunettesting.la \
234   $(top_builddir)/src/namestore/libgnunetnamestore.la \
235   $(top_builddir)/src/util/libgnunetutil.la 
236  
237 test_namestore_api_zone_iteration_SOURCES = \
238  test_namestore_api_zone_iteration.c
239 test_namestore_api_zone_iteration_LDADD = \
240   $(top_builddir)/src/testing/libgnunettesting.la \
241   $(top_builddir)/src/util/libgnunetutil.la \
242   $(top_builddir)/src/namestore/libgnunetnamestore.la  
243
244 test_namestore_api_zone_iteration_specific_zone_SOURCES = \
245  test_namestore_api_zone_iteration_specific_zone.c
246 test_namestore_api_zone_iteration_specific_zone_LDADD = \
247   $(top_builddir)/src/testing/libgnunettesting.la \
248   $(top_builddir)/src/util/libgnunetutil.la \
249   $(top_builddir)/src/namestore/libgnunetnamestore.la  
250
251 test_namestore_api_zone_iteration_stop_SOURCES = \
252  test_namestore_api_zone_iteration_stop.c
253 test_namestore_api_zone_iteration_stop_LDADD = \
254   $(top_builddir)/src/testing/libgnunettesting.la \
255   $(top_builddir)/src/util/libgnunetutil.la \
256   $(top_builddir)/src/namestore/libgnunetnamestore.la    
257
258 test_namestore_record_serialization_SOURCES = \
259  test_namestore_record_serialization.c
260 test_namestore_record_serialization_LDADD = \
261   $(top_builddir)/src/testing/libgnunettesting.la \
262   $(top_builddir)/src/util/libgnunetutil.la \
263   $(top_builddir)/src/namestore/libgnunetnamestore.la  
264
265 EXTRA_DIST = \
266   test_namestore_api.conf \
267   test_plugin_namestore_sqlite.conf \
268   test_plugin_namestore_postgres.conf \
269   test_hostkey \
270   zonefiles/S5I9DSGQVAB5FVV16T3B3CC5H1B2JGL3Q412JBKURME8EKU0600G.zkey \
271   zonefiles/AQ835GVL939H4O8QJQ7GBLPTQC0QAAO91BN7QK01BA63MDSK6I4G.zkey \
272   zonefiles/HGU0A0VCU334DN7F2I9UIUMVQMM7JMSD142LIMNUGTTV9R0CF4EG.zkey \
273   zonefiles/N0UJMP015AFUNR2BTNM3FKPBLG38913BL8IDMCO2H0A1LIB81960.zkey
274
275
276
277 test_plugin_namestore_sqlite_SOURCES = \
278  test_plugin_namestore.c
279 test_plugin_namestore_sqlite_LDADD = \
280  $(top_builddir)/src/testing/libgnunettesting.la \
281  $(top_builddir)/src/util/libgnunetutil.la  
282
283 test_plugin_namestore_postgres_SOURCES = \
284  test_plugin_namestore.c
285 test_plugin_namestore_postgres_LDADD = \
286  $(top_builddir)/src/testing/libgnunettesting.la \
287  $(top_builddir)/src/util/libgnunetutil.la