b058a8033717b9306e650e318ad39230c3605d53
[oweals/gnunet.git] / src / gns / Makefile.am
1 # This Makefile.am is in the public domain
2 AM_CPPFLAGS = -I$(top_srcdir)/src/include
3
4 if HAVE_GLIBCNSS
5 if INSTALL_NSS
6 NSS_SUBDIR = nss
7 endif
8 endif
9
10 SUBDIRS = . $(NSS_SUBDIR)
11
12 EXTRA_DIST = \
13   test_gns_defaults.conf \
14   test_gns_lookup.conf \
15   test_gns_nick_shorten.conf \
16   test_gns_proxy.conf \
17   test_gns_simple_lookup.conf \
18   gns-helper-service-w32.conf \
19   w32nsp.def \
20   gnunet-gns-proxy-setup-ca \
21   zonefiles/J7POEUT41A8PBFS7KVVDRF88GBOU4HK8PSU5QKVLVE3R9T91E99G.zkey \
22   zonefiles/OEFL7A4VEF1B40QLEMTG5D8G1CN6EN16QUSG5R2DT71GRJN34LSG.zkey \
23   zonefiles/test_zonekey \
24   $(check_SCRIPTS)
25
26 if MINGW
27   WINFLAGS = -Wl,--no-undefined -Wl,--export-all-symbols
28   DO_W32_HELPER = gnunet-gns-helper-service-w32
29   DO_W32_NSP = libw32nsp.la
30   DO_W32_NSPTOOLS = w32nsp-install w32nsp-uninstall w32nsp-resolve
31   DO_W32_HS_CONF = gns-helper-service-w32.conf
32   DO_NONPOSIX_GNSIMPORT = gnunet-gns-import
33 endif
34 USE_VPN = $(top_builddir)/src/vpn/libgnunetvpn.la
35
36 if USE_COVERAGE
37   AM_CFLAGS = --coverage -O0
38 endif
39
40 pkgcfgdir = $(pkgdatadir)/config.d/
41
42 libexecdir= $(pkglibdir)/libexec/
43
44 plugindir = $(libdir)/gnunet
45
46 pkgcfg_DATA = \
47   gns.conf \
48   $(DO_W32_HS_CONF)
49
50 lib_LTLIBRARIES = \
51   $(DO_W32_NSP) \
52   libgnunetgns.la
53
54
55 if HAVE_MHD
56 if HAVE_GNUTLS
57 if HAVE_LIBGNURL
58   DO_PROXY=gnunet-gns-proxy
59 LIB_GNURL=@LIBGNURL@
60 CPP_GNURL=@LIBGNURL_CPPFLAGS@
61 else
62 if HAVE_LIBCURL
63   DO_PROXY=gnunet-gns-proxy
64 LIB_GNURL=@LIBCURL@
65 CPP_GNURL=@LIBCURL_CPPFLAGS@
66 endif
67 endif
68 endif
69 endif
70
71 libexec_PROGRAMS = \
72   gnunet-service-gns \
73   $(DO_W32_HELPER) \
74   gnunet-dns2gns \
75   $(DO_PROXY)
76
77 bin_PROGRAMS = \
78   $(DO_W32_NSPTOOLS) \
79   $(DO_NONPOSIX_GNSIMPORT) \
80   gnunet-gns
81
82 if HAVE_MHD
83 if LINUX
84 bin_PROGRAMS += gnunet-bcd
85 endif
86 endif
87
88 bin_SCRIPTS = gnunet-gns-proxy-setup-ca
89
90 plugin_LTLIBRARIES = \
91   libgnunet_plugin_block_gns.la \
92   libgnunet_plugin_gnsrecord_gns.la
93
94
95 if HAVE_REST
96 plugin_LTLIBRARIES += libgnunet_plugin_rest_gns.la
97 endif
98
99 libgnunet_plugin_gnsrecord_gns_la_SOURCES = \
100   plugin_gnsrecord_gns.c
101 libgnunet_plugin_gnsrecord_gns_la_LIBADD = \
102   $(top_builddir)/src/gnsrecord/libgnunetgnsrecord.la \
103   $(top_builddir)/src/dns/libgnunetdnsparser.la \
104   $(top_builddir)/src/util/libgnunetutil.la \
105   $(LTLIBINTL)
106 libgnunet_plugin_gnsrecord_gns_la_LDFLAGS = \
107  $(GN_PLUGIN_LDFLAGS)
108
109
110 gnunet_gns_SOURCES = \
111  gnunet-gns.c
112 gnunet_gns_LDADD = \
113   libgnunetgns.la \
114   $(top_builddir)/src/gnsrecord/libgnunetgnsrecord.la \
115   $(top_builddir)/src/namestore/libgnunetnamestore.la \
116   $(top_builddir)/src/identity/libgnunetidentity.la \
117   $(top_builddir)/src/util/libgnunetutil.la \
118   $(GN_LIBINTL)
119
120
121 gnunet_bcd_SOURCES = \
122  gnunet-bcd.c
123 gnunet_bcd_LDADD = \
124   $(top_builddir)/src/util/libgnunetutil.la \
125   $(GN_LIBINTL) -lmicrohttpd
126
127
128 gnunet_dns2gns_SOURCES = \
129  gnunet-dns2gns.c
130 gnunet_dns2gns_LDADD = \
131   $(top_builddir)/src/gnsrecord/libgnunetgnsrecord.la \
132   libgnunetgns.la \
133   $(top_builddir)/src/util/libgnunetutil.la \
134   $(top_builddir)/src/identity/libgnunetidentity.la \
135   $(top_builddir)/src/namestore/libgnunetnamestore.la \
136   $(top_builddir)/src/dns/libgnunetdnsparser.la \
137   $(top_builddir)/src/dns/libgnunetdnsstub.la \
138   $(GN_LIBINTL)
139
140 gnunet_gns_proxy_SOURCES = \
141  gnunet-gns-proxy.c
142 gnunet_gns_proxy_CPPFLAGS = $(AM_CPPFLAGS) $(CPP_GNURL)
143 gnunet_gns_proxy_LDADD = -lmicrohttpd $(LIB_GNURL) -lgnutls \
144   libgnunetgns.la \
145   $(top_builddir)/src/identity/libgnunetidentity.la \
146   $(top_builddir)/src/util/libgnunetutil.la \
147   $(GN_LIBINTL)
148 if HAVE_GNUTLS_DANE
149 gnunet_gns_proxy_LDADD += -lgnutls-dane
150 endif
151
152 gnunet_gns_helper_service_w32_SOURCES = \
153   gnunet-gns-helper-service-w32.c
154 gnunet_gns_helper_service_w32_LDADD = \
155   libgnunetgns.la \
156   $(top_builddir)/src/identity/libgnunetidentity.la \
157   $(top_builddir)/src/util/libgnunetutil.la \
158   $(GN_LIBINTL)
159
160 gnunet_gns_import_SOURCES = \
161   gnunet-gns-import.c
162 gnunet_gns_import_LDADD = \
163   $(top_builddir)/src/identity/libgnunetidentity.la \
164   $(top_builddir)/src/namestore/libgnunetnamestore.la \
165   $(top_builddir)/src/gnsrecord/libgnunetgnsrecord.la \
166   $(top_builddir)/src/util/libgnunetutil.la \
167   $(GN_LIBINTL)
168
169
170 w32nsp_install_SOURCES = \
171   w32nsp-install.c
172 w32nsp_install_LDADD = -lws2_32
173
174 w32nsp_uninstall_SOURCES = \
175   w32nsp-uninstall.c
176 w32nsp_uninstall_LDADD = -lws2_32
177
178 w32nsp_resolve_SOURCES = \
179   w32nsp-resolve.c
180 w32nsp_resolve_LDADD = -lws2_32
181
182 gnunet_service_gns_SOURCES = \
183  gnunet-service-gns.c \
184  gnunet-service-gns_resolver.c gnunet-service-gns_resolver.h \
185  gnunet-service-gns_shorten.c gnunet-service-gns_shorten.h \
186  gnunet-service-gns_interceptor.c gnunet-service-gns_interceptor.h
187 gnunet_service_gns_LDADD = \
188   -lm \
189   $(top_builddir)/src/gnsrecord/libgnunetgnsrecord.la \
190   $(top_builddir)/src/identity/libgnunetidentity.la \
191   $(top_builddir)/src/revocation/libgnunetrevocation.la \
192   $(top_builddir)/src/statistics/libgnunetstatistics.la \
193   $(top_builddir)/src/util/libgnunetutil.la \
194   $(top_builddir)/src/dns/libgnunetdns.la \
195   $(top_builddir)/src/dns/libgnunetdnsparser.la \
196   $(top_builddir)/src/dns/libgnunetdnsstub.la \
197   $(top_builddir)/src/dht/libgnunetdht.la \
198   $(top_builddir)/src/tun/libgnunettun.la \
199   $(top_builddir)/src/namecache/libgnunetnamecache.la \
200   $(top_builddir)/src/namestore/libgnunetnamestore.la \
201   $(USE_VPN) \
202   $(GN_LIBINTL)
203
204
205 libw32nsp_la_SOURCES = \
206   w32nsp.c
207 libw32nsp_la_LIBADD = \
208   -lole32 -lws2_32
209 libw32nsp_la_LDFLAGS = \
210   -export-symbols $(top_srcdir)/src/gns/w32nsp.def \
211   -no-undefined -static-libgcc
212
213 libgnunetgns_la_SOURCES = \
214  gns_api.c gns.h
215 libgnunetgns_la_LIBADD = \
216  $(top_builddir)/src/util/libgnunetutil.la $(XLIB) \
217  $(top_builddir)/src/gnsrecord/libgnunetgnsrecord.la
218 libgnunetgns_la_LDFLAGS = \
219   $(GN_LIB_LDFLAGS)
220
221
222 libgnunet_plugin_block_gns_la_SOURCES = \
223   plugin_block_gns.c
224 libgnunet_plugin_block_gns_la_LIBADD = \
225   $(top_builddir)/src/util/libgnunetutil.la \
226   $(top_builddir)/src/block/libgnunetblock.la \
227   $(top_builddir)/src/gnsrecord/libgnunetgnsrecord.la
228 libgnunet_plugin_block_gns_la_LDFLAGS = \
229   $(GN_PLUGIN_LDFLAGS)
230
231 libgnunet_plugin_rest_gns_la_SOURCES = \
232   plugin_rest_gns.c
233 libgnunet_plugin_rest_gns_la_LIBADD = \
234   libgnunetgns.la \
235         $(top_builddir)/src/rest/libgnunetrest.la \
236   $(top_builddir)/src/identity/libgnunetidentity.la \
237   $(top_builddir)/src/util/libgnunetutil.la $(XLIBS) \
238   $(LTLIBINTL) -ljansson -lmicrohttpd
239 libgnunet_plugin_rest_gns_la_LDFLAGS = \
240  $(GN_PLUGIN_LDFLAGS)
241
242
243 check_SCRIPTS = \
244   test_gns_lookup.sh \
245   test_gns_ipv6_lookup.sh\
246   test_gns_txt_lookup.sh\
247   test_gns_mx_lookup.sh \
248   test_gns_gns2dns_lookup.sh \
249   test_gns_dht_lookup.sh\
250   test_gns_delegated_lookup.sh \
251   test_gns_nick_shorten.sh\
252   test_gns_plus_lookup.sh\
253   test_gns_zkey_lookup.sh\
254   test_gns_rel_expiration.sh\
255   test_gns_soa_lookup.sh\
256   test_gns_revocation.sh\
257   test_gns_cname_lookup.sh
258
259 if ENABLE_TEST_RUN
260 if HAVE_SQLITE
261  AM_TESTS_ENVIRONMENT=export GNUNET_PREFIX=$${GNUNET_PREFIX:-@libdir@};export PATH=$${GNUNET_PREFIX:-@prefix@}/bin:$$PATH;
262  TESTS = $(check_SCRIPTS)
263 endif
264 endif