-fix
[oweals/gnunet.git] / src / gns / Makefile.am
1 INCLUDES = -I$(top_srcdir)/src/include
2
3 if HAVE_GLIBCNSS
4 NSS_SUBDIR = nss
5 endif
6
7 SUBDIRS = . $(NSS_SUBDIR)
8
9 EXTRA_DIST = \
10   test_gns_defaults.conf \
11   test_gns_simple_lookup.conf \
12   test_gns_dht_default.conf \
13   gns-helper-service-w32.conf \
14   gnunet-gns-proxy-setup-ca \
15   zonefiles/188JSUMKEF25GVU8TTV0PBNNN8JVCPUEDFV1UHJJU884JD25V0T0.zkey \
16   zonefiles/OEFL7A4VEF1B40QLEMTG5D8G1CN6EN16QUSG5R2DT71GRJN34LSG.zkey \
17   zonefiles/test_zonekey
18
19 if MINGW
20   WINFLAGS = -Wl,--no-undefined -Wl,--export-all-symbols
21   DO_W32_HELPER = gnunet-gns-helper-service-w32
22   DO_W32_NSP = libw32nsp.la
23   DO_W32_NSPTOOLS = w32nsp-install w32nsp-uninstall w32nsp-resolve
24   DO_W32_HS_CONF = gns-helper-service-w32.conf
25 else
26   USE_VPN = $(top_builddir)/src/vpn/libgnunetvpn.la
27 endif
28
29 if USE_COVERAGE
30   AM_CFLAGS = --coverage -O0
31 endif
32
33 pkgcfgdir = $(pkgdatadir)/config.d/
34
35 libexecdir= $(pkglibdir)/libexec/
36
37 plugindir = $(libdir)/gnunet
38
39 pkgcfg_DATA = \
40   gns.conf \
41   $(DO_W32_HS_CONF)
42
43 lib_LTLIBRARIES = \
44   $(DO_W32_NSP) \
45   libgnunetgns.la \
46   libgnunetgns_common.la
47
48
49 if HAVE_MHD
50  DO_FCFSD=gnunet-gns-fcfsd
51 if HAVE_GNUTLS
52 if HAVE_LIBCURL
53  DO_PROXY=gnunet-gns-proxy
54 endif
55 endif
56 endif
57
58 libexec_PROGRAMS = \
59   gnunet-service-gns $(DO_FCFSD) \
60   $(DO_PROXY) \
61   $(DO_W32_HELPER) \
62   gnunet-dns2gns
63
64 bin_PROGRAMS = \
65   $(DO_W32_NSPTOOLS) \
66   gnunet-gns 
67
68 bin_SCRIPTS = gnunet-gns-proxy-setup-ca
69
70 plugin_LTLIBRARIES = \
71   libgnunet_plugin_block_gns.la
72
73 gnunet_gns_SOURCES = \
74  gnunet-gns.c
75 gnunet_gns_LDADD = \
76   $(top_builddir)/src/gns/libgnunetgns.la \
77   $(top_builddir)/src/util/libgnunetutil.la \
78   $(top_builddir)/src/namestore/libgnunetnamestore.la \
79   $(GN_LIBINTL)
80 gnunet_gns_DEPENDENCIES = \
81   libgnunetgns.la
82
83 gnunet_dns2gns_SOURCES = \
84  gnunet-dns2gns.c
85 gnunet_dns2gns_LDADD = \
86   $(top_builddir)/src/gns/libgnunetgns.la \
87   $(top_builddir)/src/util/libgnunetutil.la \
88   $(top_builddir)/src/namestore/libgnunetnamestore.la \
89   $(top_builddir)/src/dns/libgnunetdnsparser.la \
90         $(top_builddir)/src/dns/libgnunetdnsstub.la \
91   $(GN_LIBINTL)
92 gnunet_dns2gns_DEPENDENCIES = \
93   libgnunetgns.la
94
95 gnunet_gns_proxy_SOURCES = \
96  gnunet-gns-proxy.c gns_proxy_proto.h 
97 gnunet_gns_proxy_LDADD = -lmicrohttpd -lcurl -lgnutls \
98   $(top_builddir)/src/gns/libgnunetgns.la \
99   $(top_builddir)/src/util/libgnunetutil.la \
100   $(GN_LIBINTL)
101 gnunet_gns_proxy_DEPENDENCIES = \
102   libgnunetgns.la
103
104 gnunet_gns_helper_service_w32_SOURCES = \
105   gnunet-gns-helper-service-w32.c
106 gnunet_gns_helper_service_w32_LDADD = \
107   $(top_builddir)/src/gns/libgnunetgns.la \
108   $(top_builddir)/src/util/libgnunetutil.la \
109   $(GN_LIBINTL)
110 gnunet_gns_helper_service_w32_DEPENDENCIES = \
111   libgnunetgns.la
112
113 w32nsp_install_SOURCES = \
114   w32nsp-install.c
115 w32nsp_install_LDADD = -lws2_32
116
117 w32nsp_uninstall_SOURCES = \
118   w32nsp-uninstall.c
119 w32nsp_uninstall_LDADD = -lws2_32
120
121 w32nsp_resolve_SOURCES = \
122   w32nsp-resolve.c
123 w32nsp_resolve_LDADD = -lws2_32
124
125 gnunet_service_gns_SOURCES = \
126  gnunet-service-gns.c \
127  gnunet-service-gns_resolver.c gnunet-service-gns_resolver.h \
128  gnunet-service-gns_interceptor.c gnunet-service-gns_interceptor.h 
129 gnunet_service_gns_LDADD = \
130   -lm \
131   $(top_builddir)/src/statistics/libgnunetstatistics.la \
132   $(top_builddir)/src/util/libgnunetutil.la \
133   libgnunetgns_common.la \
134         $(top_builddir)/src/dns/libgnunetdns.la \
135         $(top_builddir)/src/dns/libgnunetdnsparser.la \
136         $(top_builddir)/src/dht/libgnunetdht.la \
137         $(top_builddir)/src/namestore/libgnunetnamestore.la \
138         $(USE_VPN) \
139   $(GN_LIBINTL)
140 gnunet_service_gns_DEPENDENCIES = \
141   $(top_builddir)/src/statistics/libgnunetstatistics.la \
142   $(top_builddir)/src/util/libgnunetutil.la \
143   libgnunetgns_common.la \
144         $(top_builddir)/src/dns/libgnunetdns.la \
145         $(top_builddir)/src/dns/libgnunetdnsparser.la \
146         $(top_builddir)/src/dht/libgnunetdht.la \
147         $(top_builddir)/src/namestore/libgnunetnamestore.la \
148         $(USE_VPN)
149
150
151
152 gnunet_gns_fcfsd_SOURCES = \
153  gnunet-gns-fcfsd.c 
154 gnunet_gns_fcfsd_LDADD = -lmicrohttpd \
155   $(top_builddir)/src/util/libgnunetutil.la \
156   $(top_builddir)/src/namestore/libgnunetnamestore.la \
157   $(GN_LIBINTL)
158 gnunet_gns_fcfsd_DEPENDENCIES = \
159   $(top_builddir)/src/util/libgnunetutil.la \
160   $(top_builddir)/src/namestore/libgnunetnamestore.la
161
162 libw32nsp_la_SOURCES = \
163   w32nsp.c
164 libw32nsp_la_LIBADD = \
165   -lole32 -lws2_32
166 libw32nsp_la_LDFLAGS = \
167   -export-symbols $(top_srcdir)/src/gns/w32nsp.def \
168   $(GN_LIB_LDFLAGS)
169
170 libgnunetgns_la_SOURCES = \
171  gns_api.c gns.h
172 libgnunetgns_la_LIBADD = \
173  $(top_builddir)/src/util/libgnunetutil.la $(XLIB) \
174  $(top_builddir)/src/namestore/libgnunetnamestore.la
175 libgnunetgns_la_LDFLAGS = \
176   $(GN_LIB_LDFLAGS)
177 libgnunetgns_la_DEPENDENCIES = \
178  $(top_builddir)/src/util/libgnunetutil.la \
179  $(top_builddir)/src/namestore/libgnunetnamestore.la
180
181
182 libgnunetgns_common_la_SOURCES = \
183  gns_common.c gns_common.h
184 libgnunetgns_common_la_LDFLAGS = \
185   $(GN_LIB_LDFLAGS)
186 libgnunetgns_common_la_LIBADD = \
187  $(top_builddir)/src/util/libgnunetutil.la 
188 libgnunetgns_common_la_DEPENDENCIES = \
189  $(top_builddir)/src/util/libgnunetutil.la 
190
191
192 libgnunet_plugin_block_gns_la_SOURCES = \
193   plugin_block_gns.c
194 libgnunet_plugin_block_gns_la_LIBADD = \
195   $(top_builddir)/src/util/libgnunetutil.la \
196   $(top_builddir)/src/block/libgnunetblock.la \
197   $(top_builddir)/src/gns/libgnunetgns_common.la \
198   $(top_builddir)/src/namestore/libgnunetnamestore.la
199 libgnunet_plugin_block_gns_la_LDFLAGS = \
200   $(GN_PLUGIN_LDFLAGS)
201 libgnunet_plugin_block_gns_la_DEPENDENCIES = \
202   $(top_builddir)/src/util/libgnunetutil.la \
203   libgnunetgns_common.la \
204   $(top_builddir)/src/block/libgnunetblock.la \
205   $(top_builddir)/src/namestore/libgnunetnamestore.la
206
207
208 check_PROGRAMS = \
209   test_gns_simple_shorten \
210   test_gns_simple_get_authority \
211   test_gns_simple_lookup \
212   test_gns_simple_delegated_lookup \
213   test_gns_simple_mx_lookup \
214   test_gns_simple_srv_lookup \
215   test_gns_simple_zkey_lookup \
216   test_gns_dht_delegated_lookup \
217   test_gns_pseu_shorten \
218   test_gns_max_queries \
219   test_gns_cname_lookup \
220   test_gns_ns_lookup \
221   test_gns_revocation \
222   test_gns_dht_three_peers
223  #test_gns_proxy
224
225 if ENABLE_TEST_RUN
226 if LINUX
227 if HAVE_SQLITE
228 TESTS = $(check_PROGRAMS)
229 endif
230 endif
231 endif
232
233
234 #test_gns_proxy_SOURCES = \
235 #  test_gns_proxy.c
236 #test_gns_proxy_LDADD = -lmicrohttpd @LIBCURL@ \
237 #  $(top_builddir)/src/util/libgnunetutil.la \
238 #  $(top_builddir)/src/namestore/libgnunetnamestore.la \
239 #  $(top_builddir)/src/gns/libgnunetgns.la \
240 #  $(top_builddir)/src/testing/libgnunettesting.la
241 #test_gns_proxy_DEPENDENCIES = \
242 #  $(top_builddir)/src/util/libgnunetutil.la \
243 #  $(top_builddir)/src/namestore/libgnunetnamestore.la \
244 #  libgnunetgns.la \
245 #  $(top_builddir)/src/testing/libgnunettesting.la
246
247 test_gns_dht_three_peers_SOURCES = \
248   test_gns_dht_three_peers.c
249 test_gns_dht_three_peers_LDADD = \
250   $(top_builddir)/src/util/libgnunetutil.la \
251   $(top_builddir)/src/namestore/libgnunetnamestore.la \
252   $(top_builddir)/src/gns/libgnunetgns.la \
253   $(top_builddir)/src/testing/libgnunettesting.la \
254   $(top_builddir)/src/testbed/libgnunettestbed.la
255 test_gns_dht_three_peers_DEPENDENCIES = \
256   $(top_builddir)/src/util/libgnunetutil.la \
257   $(top_builddir)/src/namestore/libgnunetnamestore.la \
258   libgnunetgns.la \
259   $(top_builddir)/src/testing/libgnunettesting.la \
260   $(top_builddir)/src/testbed/libgnunettestbed.la
261
262 test_gns_simple_lookup_SOURCES = \
263   test_gns_simple_lookup.c
264 test_gns_simple_lookup_LDADD = \
265   $(top_builddir)/src/util/libgnunetutil.la \
266   $(top_builddir)/src/namestore/libgnunetnamestore.la \
267   $(top_builddir)/src/gns/libgnunetgns.la \
268   $(top_builddir)/src/testing/libgnunettesting.la
269 test_gns_simple_lookup_DEPENDENCIES = \
270   $(top_builddir)/src/util/libgnunetutil.la \
271   $(top_builddir)/src/namestore/libgnunetnamestore.la \
272   libgnunetgns.la \
273   $(top_builddir)/src/testing/libgnunettesting.la
274
275 test_gns_simple_delegated_lookup_SOURCES = \
276   test_gns_simple_delegated_lookup.c
277 test_gns_simple_delegated_lookup_LDADD = \
278   $(top_builddir)/src/util/libgnunetutil.la \
279   $(top_builddir)/src/namestore/libgnunetnamestore.la \
280   $(top_builddir)/src/gns/libgnunetgns.la \
281   $(top_builddir)/src/testing/libgnunettesting.la
282 test_gns_simple_delegated_lookup_DEPENDENCIES = \
283   $(top_builddir)/src/util/libgnunetutil.la \
284   $(top_builddir)/src/namestore/libgnunetnamestore.la \
285   libgnunetgns.la \
286   $(top_builddir)/src/testing/libgnunettesting.la
287
288 test_gns_simple_mx_lookup_SOURCES = \
289   test_gns_simple_mx_lookup.c
290 test_gns_simple_mx_lookup_LDADD = \
291   $(top_builddir)/src/util/libgnunetutil.la \
292   $(top_builddir)/src/namestore/libgnunetnamestore.la \
293   $(top_builddir)/src/gns/libgnunetgns.la \
294   $(top_builddir)/src/testing/libgnunettesting.la
295 test_gns_simple_mx_lookup_DEPENDENCIES = \
296   $(top_builddir)/src/util/libgnunetutil.la \
297   $(top_builddir)/src/namestore/libgnunetnamestore.la \
298   libgnunetgns.la \
299   $(top_builddir)/src/testing/libgnunettesting.la
300
301 test_gns_simple_srv_lookup_SOURCES = \
302   test_gns_simple_srv_lookup.c
303 test_gns_simple_srv_lookup_LDADD = \
304   $(top_builddir)/src/util/libgnunetutil.la \
305   $(top_builddir)/src/namestore/libgnunetnamestore.la \
306   $(top_builddir)/src/gns/libgnunetgns.la \
307   $(top_builddir)/src/testing/libgnunettesting.la
308 test_gns_simple_srv_lookup_DEPENDENCIES = \
309   $(top_builddir)/src/util/libgnunetutil.la \
310   $(top_builddir)/src/namestore/libgnunetnamestore.la \
311   libgnunetgns.la \
312   $(top_builddir)/src/testing/libgnunettesting.la
313
314 test_gns_simple_zkey_lookup_SOURCES = \
315   test_gns_simple_zkey_lookup.c
316 test_gns_simple_zkey_lookup_LDADD = \
317   $(top_builddir)/src/util/libgnunetutil.la \
318   $(top_builddir)/src/namestore/libgnunetnamestore.la \
319   $(top_builddir)/src/gns/libgnunetgns.la \
320   $(top_builddir)/src/testing/libgnunettesting.la
321 test_gns_simple_zkey_lookup_DEPENDENCIES = \
322   $(top_builddir)/src/util/libgnunetutil.la \
323   $(top_builddir)/src/namestore/libgnunetnamestore.la \
324   libgnunetgns.la \
325   $(top_builddir)/src/testing/libgnunettesting.la
326
327 test_gns_dht_delegated_lookup_SOURCES = \
328   test_gns_dht_delegated_lookup.c
329 test_gns_dht_delegated_lookup_LDADD = \
330   $(top_builddir)/src/util/libgnunetutil.la \
331   $(top_builddir)/src/namestore/libgnunetnamestore.la \
332   $(top_builddir)/src/dht/libgnunetdht.la \
333   $(top_builddir)/src/gns/libgnunetgns.la \
334   $(top_builddir)/src/testing/libgnunettesting.la
335 test_gns_dht_delegated_lookup_DEPENDENCIES = \
336   $(top_builddir)/src/util/libgnunetutil.la \
337   $(top_builddir)/src/namestore/libgnunetnamestore.la \
338   $(top_builddir)/src/dht/libgnunetdht.la \
339   libgnunetgns.la \
340   $(top_builddir)/src/testing/libgnunettesting.la
341
342 test_gns_simple_shorten_SOURCES = \
343   test_gns_simple_shorten.c
344 test_gns_simple_shorten_LDADD = \
345   $(top_builddir)/src/util/libgnunetutil.la \
346   $(top_builddir)/src/namestore/libgnunetnamestore.la \
347   $(top_builddir)/src/gns/libgnunetgns.la \
348   $(top_builddir)/src/testing/libgnunettesting.la
349 test_gns_simple_shorten_DEPENDENCIES = \
350   $(top_builddir)/src/util/libgnunetutil.la \
351   $(top_builddir)/src/namestore/libgnunetnamestore.la \
352   libgnunetgns.la \
353   $(top_builddir)/src/testing/libgnunettesting.la
354
355 test_gns_simple_get_authority_SOURCES = \
356   test_gns_simple_get_authority.c
357 test_gns_simple_get_authority_LDADD = \
358   $(top_builddir)/src/util/libgnunetutil.la \
359   $(top_builddir)/src/namestore/libgnunetnamestore.la \
360   $(top_builddir)/src/gns/libgnunetgns.la \
361   $(top_builddir)/src/testing/libgnunettesting.la
362 test_gns_simple_get_authority_DEPENDENCIES = \
363   $(top_builddir)/src/util/libgnunetutil.la \
364   $(top_builddir)/src/namestore/libgnunetnamestore.la \
365   libgnunetgns.la \
366   $(top_builddir)/src/testing/libgnunettesting.la
367
368
369 test_gns_pseu_shorten_SOURCES = \
370   test_gns_pseu_shorten.c
371 test_gns_pseu_shorten_LDADD = \
372   $(top_builddir)/src/util/libgnunetutil.la \
373   $(top_builddir)/src/namestore/libgnunetnamestore.la \
374   $(top_builddir)/src/dht/libgnunetdht.la \
375   $(top_builddir)/src/gns/libgnunetgns.la \
376   $(top_builddir)/src/testing/libgnunettesting.la
377 test_gns_pseu_shorten_DEPENDENCIES = \
378   $(top_builddir)/src/util/libgnunetutil.la \
379   $(top_builddir)/src/namestore/libgnunetnamestore.la \
380   $(top_builddir)/src/dht/libgnunetdht.la \
381   libgnunetgns.la \
382   $(top_builddir)/src/testing/libgnunettesting.la
383
384
385 test_gns_max_queries_SOURCES = \
386   test_gns_max_queries.c
387 test_gns_max_queries_LDADD = \
388   $(top_builddir)/src/util/libgnunetutil.la \
389   $(top_builddir)/src/namestore/libgnunetnamestore.la \
390   $(top_builddir)/src/gns/libgnunetgns.la \
391   $(top_builddir)/src/testing/libgnunettesting.la
392 test_gns_max_queries_DEPENDENCIES = \
393   $(top_builddir)/src/util/libgnunetutil.la \
394   $(top_builddir)/src/namestore/libgnunetnamestore.la \
395   libgnunetgns.la \
396   $(top_builddir)/src/testing/libgnunettesting.la
397
398 test_gns_cname_lookup_SOURCES = \
399   test_gns_cname_lookup.c
400 test_gns_cname_lookup_LDADD = \
401   $(top_builddir)/src/util/libgnunetutil.la \
402   $(top_builddir)/src/namestore/libgnunetnamestore.la \
403   $(top_builddir)/src/gns/libgnunetgns.la \
404   $(top_builddir)/src/testing/libgnunettesting.la
405 test_gns_cname_lookup_DEPENDENCIES = \
406   $(top_builddir)/src/util/libgnunetutil.la \
407   $(top_builddir)/src/namestore/libgnunetnamestore.la \
408   libgnunetgns.la \
409   $(top_builddir)/src/testing/libgnunettesting.la
410
411
412 test_gns_ns_lookup_SOURCES = \
413   test_gns_ns_lookup.c
414 test_gns_ns_lookup_LDADD = \
415   $(top_builddir)/src/util/libgnunetutil.la \
416   $(top_builddir)/src/namestore/libgnunetnamestore.la \
417   $(top_builddir)/src/gns/libgnunetgns.la \
418   $(top_builddir)/src/testing/libgnunettesting.la
419 test_gns_ns_lookup_DEPENDENCIES = \
420   $(top_builddir)/src/util/libgnunetutil.la \
421   $(top_builddir)/src/namestore/libgnunetnamestore.la \
422   libgnunetgns.la \
423   $(top_builddir)/src/testing/libgnunettesting.la
424
425
426 test_gns_revocation_SOURCES = \
427   test_gns_revocation.c
428 test_gns_revocation_LDADD = \
429   $(top_builddir)/src/util/libgnunetutil.la \
430   $(top_builddir)/src/namestore/libgnunetnamestore.la \
431   $(top_builddir)/src/gns/libgnunetgns.la \
432   $(top_builddir)/src/testing/libgnunettesting.la
433 test_gns_revocation_DEPENDENCIES = \
434   $(top_builddir)/src/util/libgnunetutil.la \
435   $(top_builddir)/src/namestore/libgnunetnamestore.la \
436   libgnunetgns.la \
437   $(top_builddir)/src/testing/libgnunettesting.la
438
439
440
441 #Build stub api
442 #libgnunetnamestore_la_SOURCES = \
443 # namestore_stub_api.c
444 #libgnunetnamestore_la_LIBADD = \
445 # $(top_builddir)/src/util/libgnunetutil.la $(XLIB)
446 #libgnunetnamestore_la_LDFLAGS = \
447 #  $(GN_LIB_LDFLAGS)
448 #libgnunetnamestore_la_DEPENDENCIES = \
449 # $(top_builddir)/src/util/libgnunetutil.la
450
451
452