blob: 65081436f63ef8d053692885d27d0ccd3e2386fb (
plain)
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
|
INCLUDES = -I$(top_srcdir)/src/include
if MINGW
WINFLAGS = -Wl,--no-undefined -Wl,--export-all-symbols
endif
if USE_COVERAGE
AM_CFLAGS = --coverage -O0
endif
pkgcfgdir= $(pkgdatadir)/config.d/
plugindir = $(libdir)/gnunet
pkgcfg_DATA = \
gns.conf
lib_LTLIBRARIES = \
libgnunetgns.la
bin_PROGRAMS = \
gnunet-service-gns \
gnunet-gns-fcfsd \
gnunet-gns
#noinst_PROGRAMS = \
# gnunet-gns-lookup
check_PROGRAMS = \
test_gns_simple_shorten
# test_gns_simple_lookup
# test_gns_simple_delegated_lookup
# test_gns_dht_delegated_lookup
plugin_LTLIBRARIES = \
libgnunet_plugin_block_gns.la
#test_gns_twopeer_SOURCES = \
# test_gns_twopeer.c
#test_gns_twopeer_LDADD = \
# $(top_builddir)/src/util/libgnunetutil.la \
# $(top_builddir)/src/namestore/libgnunetnamestore.la \
# $(top_builddir)/src/testing/libgnunettesting.la
#test_gns_twopeer_DEPENDENCIES = \
# $(top_builddir)/src/util/libgnunetutil.la \
# $(top_builddir)/src/namestore/libgnunetnamestore.la \
# $(top_builddir)/src/testing/libgnunettesting.la
#test_gns_simple_lookup_SOURCES = \
# test_gns_simple_lookup.c
#test_gns_simple_lookup_LDADD = \
# $(top_builddir)/src/util/libgnunetutil.la \
# $(top_builddir)/src/namestore/libgnunetnamestore.la \
# $(top_builddir)/src/testing/libgnunettesting.la
#test_gns_simple_lookup_DEPENDENCIES = \
# $(top_builddir)/src/util/libgnunetutil.la \
# $(top_builddir)/src/namestore/libgnunetnamestore.la \
# $(top_builddir)/src/testing/libgnunettesting.la
#test_gns_simple_delegated_lookup_SOURCES = \
# test_gns_simple_delegated_lookup.c
#test_gns_simple_delegated_lookup_LDADD = \
# $(top_builddir)/src/util/libgnunetutil.la \
# $(top_builddir)/src/namestore/libgnunetnamestore.la \
# $(top_builddir)/src/testing/libgnunettesting.la
#test_gns_simple_delegated_lookup_DEPENDENCIES = \
# $(top_builddir)/src/util/libgnunetutil.la \
# $(top_builddir)/src/namestore/libgnunetnamestore.la \
# $(top_builddir)/src/testing/libgnunettesting.la
#test_gns_dht_delegated_lookup_SOURCES = \
# test_gns_dht_delegated_lookup.c
#test_gns_dht_delegated_lookup_LDADD = \
# $(top_builddir)/src/util/libgnunetutil.la \
# $(top_builddir)/src/namestore/libgnunetnamestore.la \
# $(top_builddir)/src/dht/libgnunetdht.la \
# $(top_builddir)/src/testing/libgnunettesting.la
#test_gns_dht_delegated_lookup_DEPENDENCIES = \
# $(top_builddir)/src/util/libgnunetutil.la \
# $(top_builddir)/src/namestore/libgnunetnamestore.la \
# $(top_builddir)/src/dht/libgnunetdht.la \
# $(top_builddir)/src/testing/libgnunettesting.la
test_gns_simple_shorten_SOURCES = \
test_gns_simple_shorten.c
test_gns_simple_shorten_LDADD = \
$(top_builddir)/src/util/libgnunetutil.la \
$(top_builddir)/src/namestore/libgnunetnamestore.la \
$(top_builddir)/src/gns/libgnunetgns.la \
$(top_builddir)/src/dht/libgnunetdht.la \
$(top_builddir)/src/testing/libgnunettesting.la
test_gns_simple_shorten_DEPENDENCIES = \
$(top_builddir)/src/util/libgnunetutil.la \
$(top_builddir)/src/namestore/libgnunetnamestore.la \
$(top_builddir)/src/gns/libgnunetgns.la \
$(top_builddir)/src/dht/libgnunetdht.la \
$(top_builddir)/src/testing/libgnunettesting.la
gnunet_gns_SOURCES = \
gnunet-gns.c
gnunet_gns_LDADD = \
$(top_builddir)/src/gns/libgnunetgns.la \
$(top_builddir)/src/util/libgnunetutil.la \
$(GN_LIBINTL)
gnunet_gns_DEPENDENCIES = \
libgnunetgns.la
gnunet_service_gns_SOURCES = \
gnunet-service-gns.c
gnunet_service_gns_LDADD = \
$(top_builddir)/src/tun/libgnunettun.la \
$(top_builddir)/src/mesh/libgnunetmesh.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 \
$(GN_LIBINTL)
gnunet_service_gns_DEPENDENCIES = \
$(top_builddir)/src/tun/libgnunettun.la \
$(top_builddir)/src/mesh/libgnunetmesh.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
gnunet_gns_fcfsd_SOURCES = \
gnunet-gns-fcfsd.c
gnunet_gns_fcfsd_LDADD = -lmicrohttpd \
$(top_builddir)/src/util/libgnunetutil.la \
$(top_builddir)/src/namestore/libgnunetnamestore.la \
$(GN_LIBINTL)
gnunet_gns_fcfsd_DEPENDENCIES = \
$(top_builddir)/src/util/libgnunetutil.la \
$(top_builddir)/src/namestore/libgnunetnamestore.la
libgnunetgns_la_SOURCES = \
gns_api.c gns.h
libgnunetgns_la_LIBADD = \
$(top_builddir)/src/util/libgnunetutil.la $(XLIB)
libgnunetgns_la_LDFLAGS = \
$(GN_LIB_LDFLAGS)
libgnunetgns_la_DEPENDENCIES = \
$(top_builddir)/src/util/libgnunetutil.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/namestore/libgnunetnamestore.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/namestore/libgnunetnamestore.la
#Build stub api
#libgnunetnamestore_la_SOURCES = \
# namestore_stub_api.c
#libgnunetnamestore_la_LIBADD = \
# $(top_builddir)/src/util/libgnunetutil.la $(XLIB)
#libgnunetnamestore_la_LDFLAGS = \
# $(GN_LIB_LDFLAGS)
#libgnunetnamestore_la_DEPENDENCIES = \
# $(top_builddir)/src/util/libgnunetutil.la
if ENABLE_TEST_RUN
TESTS = $(check_PROGRAMS)
endif
EXTRA_DIST = \
test_gns_simple_lookup.conf
|