aboutsummaryrefslogtreecommitdiff
path: root/src/gns/Makefile.am
blob: d97a4b48cb6c86a8ade3e3446b357f7af6b4e939 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
AM_CPPFLAGS = -I$(top_srcdir)/src/include

if HAVE_GLIBCNSS
if INSTALL_NSS
NSS_SUBDIR = nss
endif
endif

SUBDIRS = . $(NSS_SUBDIR)

EXTRA_DIST = \
  test_gns_defaults.conf \
  test_gns_simple_lookup.conf \
  test_gns_dht_default.conf \
  gns-helper-service-w32.conf \
  gnunet-gns-proxy-setup-ca \
  zonefiles/J7POEUT41A8PBFS7KVVDRF88GBOU4HK8PSU5QKVLVE3R9T91E99G.zkey \
  zonefiles/OEFL7A4VEF1B40QLEMTG5D8G1CN6EN16QUSG5R2DT71GRJN34LSG.zkey \
  zonefiles/test_zonekey \
  $(check_SCRIPTS)

if MINGW
  WINFLAGS = -Wl,--no-undefined -Wl,--export-all-symbols
  DO_W32_HELPER = gnunet-gns-helper-service-w32
  DO_W32_NSP = libw32nsp.la
  DO_W32_NSPTOOLS = w32nsp-install w32nsp-uninstall w32nsp-resolve
  DO_W32_HS_CONF = gns-helper-service-w32.conf
endif
USE_VPN = $(top_builddir)/src/vpn/libgnunetvpn.la

if USE_COVERAGE
  AM_CFLAGS = --coverage -O0
endif

pkgcfgdir = $(pkgdatadir)/config.d/

libexecdir= $(pkglibdir)/libexec/

plugindir = $(libdir)/gnunet

pkgcfg_DATA = \
  gns.conf \
  $(DO_W32_HS_CONF)

lib_LTLIBRARIES = \
  $(DO_W32_NSP) \
  libgnunetgns.la


if HAVE_MHD
if HAVE_GNUTLS
if HAVE_LIBCURL
# DO_PROXY=gnunet-gns-proxy
endif
endif
endif

libexec_PROGRAMS = \
  gnunet-service-gns \
  $(DO_W32_HELPER) \
  gnunet-dns2gns
#  $(DO_PROXY)

bin_PROGRAMS = \
  $(DO_W32_NSPTOOLS) \
  gnunet-gns

bin_SCRIPTS = gnunet-gns-proxy-setup-ca

plugin_LTLIBRARIES = \
  libgnunet_plugin_block_gns.la \
  libgnunet_plugin_gnsrecord_gns.la


libgnunet_plugin_gnsrecord_gns_la_SOURCES = \
  plugin_gnsrecord_gns.c
libgnunet_plugin_gnsrecord_gns_la_LIBADD = \
  $(top_builddir)/src/dns/libgnunetdnsparser.la \
  $(top_builddir)/src/util/libgnunetutil.la \
  $(LTLIBINTL)
libgnunet_plugin_gnsrecord_gns_la_LDFLAGS = \
 $(GN_PLUGIN_LDFLAGS)


gnunet_gns_SOURCES = \
 gnunet-gns.c
gnunet_gns_LDADD = \
  $(top_builddir)/src/gns/libgnunetgns.la \
  $(top_builddir)/src/gnsrecord/libgnunetgnsrecord.la \
  $(top_builddir)/src/namestore/libgnunetnamestore.la \
  $(top_builddir)/src/identity/libgnunetidentity.la \
  $(top_builddir)/src/util/libgnunetutil.la \
  $(GN_LIBINTL)
gnunet_gns_DEPENDENCIES = \
  $(top_builddir)/src/namestore/libgnunetnamestore.la \
  $(top_builddir)/src/identity/libgnunetidentity.la \
  $(top_builddir)/src/util/libgnunetutil.la \
  libgnunetgns.la

gnunet_dns2gns_SOURCES = \
 gnunet-dns2gns.c
gnunet_dns2gns_LDADD = \
  $(top_builddir)/src/gnsrecord/libgnunetgnsrecord.la \
  $(top_builddir)/src/gns/libgnunetgns.la \
  $(top_builddir)/src/util/libgnunetutil.la \
  $(top_builddir)/src/identity/libgnunetidentity.la \
  $(top_builddir)/src/namestore/libgnunetnamestore.la \
  $(top_builddir)/src/dns/libgnunetdnsparser.la \
  $(top_builddir)/src/dns/libgnunetdnsstub.la \
  $(GN_LIBINTL)
gnunet_dns2gns_DEPENDENCIES = \
  $(top_builddir)/src/gnsrecord/libgnunetgnsrecord.la \
  $(top_builddir)/src/util/libgnunetutil.la \
  $(top_builddir)/src/identity/libgnunetidentity.la \
  $(top_builddir)/src/namestore/libgnunetnamestore.la \
  $(top_builddir)/src/dns/libgnunetdnsparser.la \
  $(top_builddir)/src/dns/libgnunetdnsstub.la \
  libgnunetgns.la

gnunet_gns_proxy_SOURCES = \
 gnunet-gns-proxy.c
gnunet_gns_proxy_LDADD = -lmicrohttpd -lcurl -lgnutls \
  $(top_builddir)/src/gns/libgnunetgns.la \
  $(top_builddir)/src/identity/libgnunetidentity.la \
  $(top_builddir)/src/util/libgnunetutil.la \
  $(GN_LIBINTL)
if HAVE_GNUTLS_DANE
gnunet_gns_proxy_LDADD += -lgnutls-dane
endif
gnunet_gns_proxy_DEPENDENCIES = \
  $(top_builddir)/src/identity/libgnunetidentity.la \
  $(top_builddir)/src/util/libgnunetutil.la \
  libgnunetgns.la

gnunet_gns_helper_service_w32_SOURCES = \
  gnunet-gns-helper-service-w32.c
gnunet_gns_helper_service_w32_LDADD = \
  $(top_builddir)/src/gns/libgnunetgns.la \
  $(top_builddir)/src/util/libgnunetutil.la \
  $(GN_LIBINTL)
gnunet_gns_helper_service_w32_DEPENDENCIES = \
  $(top_builddir)/src/util/libgnunetutil.la \
  libgnunetgns.la

w32nsp_install_SOURCES = \
  w32nsp-install.c
w32nsp_install_LDADD = -lws2_32

w32nsp_uninstall_SOURCES = \
  w32nsp-uninstall.c
w32nsp_uninstall_LDADD = -lws2_32

w32nsp_resolve_SOURCES = \
  w32nsp-resolve.c
w32nsp_resolve_LDADD = -lws2_32

gnunet_service_gns_SOURCES = \
 gnunet-service-gns.c \
 gnunet-service-gns_resolver.c gnunet-service-gns_resolver.h \
 gnunet-service-gns_shorten.c gnunet-service-gns_shorten.h \
 gnunet-service-gns_interceptor.c gnunet-service-gns_interceptor.h
gnunet_service_gns_LDADD = \
  -lm \
  $(top_builddir)/src/gnsrecord/libgnunetgnsrecord.la \
  $(top_builddir)/src/revocation/libgnunetrevocation.la \
  $(top_builddir)/src/statistics/libgnunetstatistics.la \
  $(top_builddir)/src/util/libgnunetutil.la \
  $(top_builddir)/src/dns/libgnunetdns.la \
  $(top_builddir)/src/dns/libgnunetdnsparser.la \
  $(top_builddir)/src/dns/libgnunetdnsstub.la \
  $(top_builddir)/src/dht/libgnunetdht.la \
  $(top_builddir)/src/namecache/libgnunetnamecache.la \
  $(top_builddir)/src/namestore/libgnunetnamestore.la \
  $(USE_VPN) \
  $(GN_LIBINTL)
gnunet_service_gns_DEPENDENCIES = \
  $(top_builddir)/src/gnsrecord/libgnunetgnsrecord.la \
  $(top_builddir)/src/revocation/libgnunetrevocation.la \
  $(top_builddir)/src/statistics/libgnunetstatistics.la \
  $(top_builddir)/src/util/libgnunetutil.la \
  $(top_builddir)/src/dns/libgnunetdns.la \
  $(top_builddir)/src/dns/libgnunetdnsparser.la \
  $(top_builddir)/src/dht/libgnunetdht.la \
  $(top_builddir)/src/namestore/libgnunetnamestore.la \
  $(USE_VPN)



libw32nsp_la_SOURCES = \
  w32nsp.c
libw32nsp_la_LIBADD = \
  -lole32 -lws2_32
libw32nsp_la_LDFLAGS = \
  -export-symbols $(top_srcdir)/src/gns/w32nsp.def \
  $(GN_LIB_LDFLAGS)

libgnunetgns_la_SOURCES = \
 gns_api.c gns.h
libgnunetgns_la_LIBADD = \
 $(top_builddir)/src/util/libgnunetutil.la $(XLIB) \
 $(top_builddir)/src/gnsrecord/libgnunetgnsrecord.la
libgnunetgns_la_LDFLAGS = \
  $(GN_LIB_LDFLAGS)
libgnunetgns_la_DEPENDENCIES = \
 $(top_builddir)/src/util/libgnunetutil.la \
 $(top_builddir)/src/gnsrecord/libgnunetgnsrecord.la


libgnunet_plugin_block_gns_la_SOURCES = \
  plugin_block_gns.c
libgnunet_plugin_block_gns_la_LIBADD = \
  $(top_builddir)/src/util/libgnunetutil.la \
  $(top_builddir)/src/block/libgnunetblock.la \
  $(top_builddir)/src/gnsrecord/libgnunetgnsrecord.la
libgnunet_plugin_block_gns_la_LDFLAGS = \
  $(GN_PLUGIN_LDFLAGS)
libgnunet_plugin_block_gns_la_DEPENDENCIES = \
  $(top_builddir)/src/util/libgnunetutil.la \
  $(top_builddir)/src/block/libgnunetblock.la \
  $(top_builddir)/src/gnsrecord/libgnunetgnsrecord.la


check_SCRIPTS = \
  test_gns_delegated_lookup.sh \
  test_gns_lookup.sh \
  test_gns_ipv6_lookup.sh\
  test_gns_txt_lookup.sh\
  test_gns_mx_lookup.sh \
  test_gns_ns_lookup.sh \
  test_gns_dht_lookup.sh\
  test_gns_pseu_shorten.sh\
  test_gns_plus_lookup.sh\
  test_gns_zkey_lookup.sh\
  test_gns_rel_expiration.sh\
  test_gns_soa_lookup.sh\
  test_gns_revocation.sh\
  test_gns_cname_lookup.sh

if ENABLE_TEST_RUN
if HAVE_SQLITE
 TESTS = $(check_SCRIPTS)
endif
endif