8c952be0420e7cc9a33bd80cd01169bffefa1ddb
[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_proxy.conf \
16   test_gns_simple_lookup.conf \
17   gns-helper-service-w32.conf \
18   w32nsp.def \
19   gnunet-gns-proxy-setup-ca \
20   zonefiles/J7POEUT41A8PBFS7KVVDRF88GBOU4HK8PSU5QKVLVE3R9T91E99G.zkey \
21   zonefiles/OEFL7A4VEF1B40QLEMTG5D8G1CN6EN16QUSG5R2DT71GRJN34LSG.zkey \
22   zonefiles/test_zonekey \
23   $(check_SCRIPTS)
24
25 if MINGW
26   WINFLAGS = -Wl,--no-undefined -Wl,--export-all-symbols
27   DO_W32_HELPER = gnunet-gns-helper-service-w32
28   DO_W32_NSP = libw32nsp.la
29   DO_W32_NSPTOOLS = w32nsp-install w32nsp-uninstall w32nsp-resolve
30   DO_W32_HS_CONF = gns-helper-service-w32.conf
31   DO_NONPOSIX_GNSIMPORT = gnunet-gns-import
32 endif
33 USE_VPN = $(top_builddir)/src/vpn/libgnunetvpn.la
34
35 if USE_COVERAGE
36   AM_CFLAGS = --coverage -O0
37 endif
38
39 pkgcfgdir = $(pkgdatadir)/config.d/
40
41 libexecdir= $(pkglibdir)/libexec/
42
43 plugindir = $(libdir)/gnunet
44
45 pkgcfg_DATA = \
46   gns.conf \
47   $(DO_W32_HS_CONF)
48
49 lib_LTLIBRARIES = \
50   $(DO_W32_NSP) \
51   libgnunetgns.la
52
53
54 if HAVE_MHD
55 if HAVE_GNUTLS
56 if HAVE_LIBGNURL
57   DO_PROXY=gnunet-gns-proxy
58 LIB_GNURL=@LIBGNURL@
59 CPP_GNURL=@LIBGNURL_CPPFLAGS@
60 else
61 if HAVE_LIBCURL
62   DO_PROXY=gnunet-gns-proxy
63 LIB_GNURL=@LIBCURL@
64 CPP_GNURL=@LIBCURL_CPPFLAGS@
65 endif
66 endif
67 endif
68 endif
69
70 libexec_PROGRAMS = \
71   gnunet-service-gns \
72   $(DO_W32_HELPER) \
73   gnunet-dns2gns \
74   $(DO_PROXY)
75
76 bin_PROGRAMS = \
77   $(DO_W32_NSPTOOLS) \
78   $(DO_NONPOSIX_GNSIMPORT) \
79   gnunet-gns
80
81 if HAVE_MHD
82 if LINUX
83 bin_PROGRAMS += gnunet-bcd
84 endif
85 endif
86
87 bin_SCRIPTS = gnunet-gns-proxy-setup-ca
88
89 plugin_LTLIBRARIES = \
90   libgnunet_plugin_block_gns.la \
91   libgnunet_plugin_gnsrecord_gns.la
92
93
94 if HAVE_MHD
95 if HAVE_JSON
96 plugin_LTLIBRARIES += libgnunet_plugin_rest_gns.la
97 endif
98 endif
99
100 libgnunet_plugin_gnsrecord_gns_la_SOURCES = \
101   plugin_gnsrecord_gns.c
102 libgnunet_plugin_gnsrecord_gns_la_LIBADD = \
103   $(top_builddir)/src/gnsrecord/libgnunetgnsrecord.la \
104   $(top_builddir)/src/dns/libgnunetdnsparser.la \
105   $(top_builddir)/src/util/libgnunetutil.la \
106   $(LTLIBINTL)
107 libgnunet_plugin_gnsrecord_gns_la_LDFLAGS = \
108  $(GN_PLUGIN_LDFLAGS)
109
110
111 gnunet_gns_SOURCES = \
112  gnunet-gns.c
113 gnunet_gns_LDADD = \
114   libgnunetgns.la \
115   $(top_builddir)/src/gnsrecord/libgnunetgnsrecord.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/dns/libgnunetdnsparser.la \
136   $(top_builddir)/src/dns/libgnunetdnsstub.la \
137   $(GN_LIBINTL)
138
139 gnunet_gns_proxy_SOURCES = \
140  gnunet-gns-proxy.c
141 gnunet_gns_proxy_CPPFLAGS = $(AM_CPPFLAGS) $(CPP_GNURL)
142 gnunet_gns_proxy_LDADD = -lmicrohttpd $(LIB_GNURL) -lgnutls \
143   libgnunetgns.la \
144   $(top_builddir)/src/identity/libgnunetidentity.la \
145   $(top_builddir)/src/util/libgnunetutil.la \
146   $(GN_LIBINTL)
147 if HAVE_GNUTLS_DANE
148 gnunet_gns_proxy_LDADD += -lgnutls-dane
149 endif
150
151 gnunet_gns_helper_service_w32_SOURCES = \
152   gnunet-gns-helper-service-w32.c
153 gnunet_gns_helper_service_w32_LDADD = \
154   libgnunetgns.la \
155   $(top_builddir)/src/identity/libgnunetidentity.la \
156   $(top_builddir)/src/util/libgnunetutil.la \
157   $(GN_LIBINTL)
158
159 gnunet_gns_import_SOURCES = \
160   gnunet-gns-import.c
161 gnunet_gns_import_LDADD = \
162   $(top_builddir)/src/identity/libgnunetidentity.la \
163   $(top_builddir)/src/namestore/libgnunetnamestore.la \
164   $(top_builddir)/src/gnsrecord/libgnunetgnsrecord.la \
165   $(top_builddir)/src/util/libgnunetutil.la \
166   $(GN_LIBINTL)
167
168
169 w32nsp_install_SOURCES = \
170   w32nsp-install.c
171 w32nsp_install_LDADD = -lws2_32
172
173 w32nsp_uninstall_SOURCES = \
174   w32nsp-uninstall.c
175 w32nsp_uninstall_LDADD = -lws2_32
176
177 w32nsp_resolve_SOURCES = \
178   w32nsp-resolve.c
179 w32nsp_resolve_LDADD = -lws2_32
180
181 gnunet_service_gns_SOURCES = \
182  gnunet-service-gns.c \
183  gnunet-service-gns_resolver.c gnunet-service-gns_resolver.h \
184  gnunet-service-gns_interceptor.c gnunet-service-gns_interceptor.h
185 gnunet_service_gns_LDADD = \
186   -lm \
187   $(top_builddir)/src/gnsrecord/libgnunetgnsrecord.la \
188   $(top_builddir)/src/identity/libgnunetidentity.la \
189   $(top_builddir)/src/revocation/libgnunetrevocation.la \
190   $(top_builddir)/src/statistics/libgnunetstatistics.la \
191   $(top_builddir)/src/util/libgnunetutil.la \
192   $(top_builddir)/src/dns/libgnunetdns.la \
193   $(top_builddir)/src/dns/libgnunetdnsparser.la \
194   $(top_builddir)/src/dns/libgnunetdnsstub.la \
195   $(top_builddir)/src/dht/libgnunetdht.la \
196   $(top_builddir)/src/tun/libgnunettun.la \
197   $(top_builddir)/src/namecache/libgnunetnamecache.la \
198   $(USE_VPN) \
199   $(GN_LIBINTL)
200
201
202 libw32nsp_la_SOURCES = \
203   w32nsp.c
204 libw32nsp_la_LIBADD = \
205   -lole32 -lws2_32
206 libw32nsp_la_LDFLAGS = \
207   -export-symbols $(top_srcdir)/src/gns/w32nsp.def \
208   -no-undefined -static-libgcc
209
210 libgnunetgns_la_SOURCES = \
211  gns_api.c gns.h
212 libgnunetgns_la_LIBADD = \
213  $(top_builddir)/src/util/libgnunetutil.la $(XLIB) \
214  $(top_builddir)/src/gnsrecord/libgnunetgnsrecord.la
215 libgnunetgns_la_LDFLAGS = \
216   $(GN_LIB_LDFLAGS)
217
218
219 libgnunet_plugin_block_gns_la_SOURCES = \
220   plugin_block_gns.c
221 libgnunet_plugin_block_gns_la_LIBADD = \
222   $(top_builddir)/src/util/libgnunetutil.la \
223   $(top_builddir)/src/block/libgnunetblock.la \
224   $(top_builddir)/src/block/libgnunetblockgroup.la \
225   $(top_builddir)/src/gnsrecord/libgnunetgnsrecord.la
226 libgnunet_plugin_block_gns_la_LDFLAGS = \
227   $(GN_PLUGIN_LDFLAGS)
228
229 libgnunet_plugin_rest_gns_la_SOURCES = \
230   plugin_rest_gns.c
231 libgnunet_plugin_rest_gns_la_LIBADD = \
232   libgnunetgns.la \
233         $(top_builddir)/src/rest/libgnunetrest.la \
234   $(top_builddir)/src/identity/libgnunetidentity.la \
235         $(top_builddir)/src/jsonapi/libgnunetjsonapi.la \
236   $(top_builddir)/src/jsonapi/libgnunetjsonapiutils.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_plus_lookup.sh\
252   test_gns_zkey_lookup.sh\
253   test_gns_rel_expiration.sh\
254   test_gns_soa_lookup.sh\
255   test_gns_revocation.sh\
256   test_gns_cname_lookup.sh
257
258 if ENABLE_TEST_RUN
259 if HAVE_SQLITE
260  AM_TESTS_ENVIRONMENT=export GNUNET_PREFIX=$${GNUNET_PREFIX:-@libdir@};export PATH=$${GNUNET_PREFIX:-@prefix@}/bin:$$PATH;unset XDG_DATA_HOME;unset XDG_CONFIG_HOME;
261  TESTS = $(check_SCRIPTS)
262 endif
263 endif