9f04943e5239374b3a6604dc02ca3982dfcc8db0
[oweals/gnunet.git] / src / dht / Makefile.am
1 INCLUDES = -I$(top_srcdir)/src/include
2 if MINGW
3  WINFLAGS = -Wl,--no-undefined -Wl,--export-all-symbols -lole32 -lshell32 -liconv -lstdc++ -lcomdlg32 -lgdi32
4 endif
5
6 plugindir = $(libdir)/gnunet
7
8 if HAVE_MYSQL
9  MYSQL_PLUGIN = libgnunet_plugin_dhtlog_mysql.la
10 endif
11
12 if HAVE_ZLIB
13  ZLIB_LNK = -lz
14 endif
15
16 if USE_COVERAGE
17   AM_CFLAGS = --coverage -O0
18   XLIB = -lgcov
19 endif
20
21 lib_LTLIBRARIES = \
22  libgnunetdht.la \
23  libgnunetdhtnew.la \
24  libgnunetdhtlog.la
25
26 plugin_LTLIBRARIES = \
27  $(MYSQL_PLUGIN) \
28  libgnunet_plugin_dhtlog_dummy.la \
29  libgnunet_plugin_dhtlog_mysql_dump.la \
30  libgnunet_plugin_dhtlog_mysql_dump_load.la  
31
32
33 libgnunet_plugin_dhtlog_mysql_la_SOURCES = \
34   plugin_dhtlog_mysql.c
35 libgnunet_plugin_dhtlog_mysql_la_LIBADD = \
36   $(top_builddir)/src/util/libgnunetutil.la $(XLIBS) -lz -lsqlite3
37 libgnunet_plugin_dhtlog_mysql_la_LDFLAGS = \
38  $(GN_PLUGIN_LDFLAGS) $(MYSQL_LDFLAGS) -lmysqlclient
39 libgnunet_plugin_dhtlog_mysql_la_CPFLAGS = \
40  $(MYSQL_CPPFLAGS)
41
42 libgnunet_plugin_dhtlog_dummy_la_SOURCES = \
43   plugin_dhtlog_dummy.c
44 libgnunet_plugin_dhtlog_dummy_la_LIBADD = \
45   $(top_builddir)/src/util/libgnunetutil.la \
46   $(XLIB)
47 libgnunet_plugin_dhtlog_dummy_la_LDFLAGS = \
48  $(GN_PLUGIN_LDFLAGS)
49
50 libgnunet_plugin_dhtlog_mysql_dump_la_SOURCES = \
51   plugin_dhtlog_mysql_dump.c
52 libgnunet_plugin_dhtlog_mysql_dump_la_LIBADD = \
53   $(top_builddir)/src/util/libgnunetutil.la \
54   $(XLIB)
55 libgnunet_plugin_dhtlog_mysql_dump_la_LDFLAGS = \
56  $(GN_PLUGIN_LDFLAGS)
57
58 libgnunet_plugin_dhtlog_mysql_dump_load_la_SOURCES = \
59   plugin_dhtlog_mysql_dump_load.c
60 libgnunet_plugin_dhtlog_mysql_dump_load_la_LIBADD = \
61   $(top_builddir)/src/util/libgnunetutil.la \
62   $(XLIB)
63 libgnunet_plugin_dhtlog_mysql_dump_load_la_LDFLAGS = \
64  $(GN_PLUGIN_LDFLAGS)
65
66 libgnunetdhtlog_la_SOURCES = \
67   dhtlog.c dhtlog.h
68 libgnunetdhtlog_la_LIBADD = \
69   $(top_builddir)/src/util/libgnunetutil.la
70 libgnunetdhtlog_la_LDFLAGS = \
71   $(GN_LIB_LDFLAGS) $(WINFLAGS) \
72   -version-info 0:0:0
73
74 libgnunetdht_la_SOURCES = \
75   dht_api.c dht.h \
76   dht_api_get_put.c \
77   dht_api_find_peer.c 
78 libgnunetdht_la_LIBADD = \
79   $(top_builddir)/src/util/libgnunetutil.la \
80   $(XLIB)
81 libgnunetdht_la_LDFLAGS = \
82   $(GN_LIB_LDFLAGS) $(WINFLAGS) \
83   -version-info 0:0:0
84
85 libgnunetdhtnew_la_SOURCES = \
86   dht_api_new.c dht_new.h 
87 libgnunetdhtnew_la_LIBADD = \
88   $(top_builddir)/src/util/libgnunetutil.la \
89   $(XLIB)
90 libgnunetdhtnew_la_LDFLAGS = \
91   $(GN_LIB_LDFLAGS) $(WINFLAGS) \
92   -version-info 0:0:0
93
94 bin_PROGRAMS = \
95  gnunet-service-dht \
96  gnunet-service-dht-new \
97  gnunet-dht-get \
98  gnunet-dht-put
99
100 if HAVE_MALICIOUS
101 noinst_PROGRAMS = \
102  gnunet-dht-driver 
103 endif
104
105 gnunet_service_dht_SOURCES = \
106  gnunet-service-dht.c         
107 gnunet_service_dht_LDADD = \
108   $(top_builddir)/src/statistics/libgnunetstatistics.la \
109   $(top_builddir)/src/core/libgnunetcore.la \
110   $(top_builddir)/src/nse/libgnunetnse.la \
111   $(top_builddir)/src/transport/libgnunettransport.la \
112   $(top_builddir)/src/hello/libgnunethello.la \
113   $(top_builddir)/src/block/libgnunetblock.la \
114   $(top_builddir)/src/datacache/libgnunetdatacache.la \
115   $(top_builddir)/src/util/libgnunetutil.la \
116   $(top_builddir)/src/dht/libgnunetdhtlog.la -lm
117 gnunet_service_dht_DEPENDENCIES = \
118   libgnunetdhtlog.la                              
119
120 gnunet_service_dht_new_SOURCES = \
121  gnunet-service-dht-new.c gnunet-service-dht.h \
122  gnunet-service-dht_clients.c gnunet-service-dht_clients.h \
123  gnunet-service-dht_datacache.c gnunet-service-dht_datacache.h \
124  gnunet-service-dht_hello.c gnunet-service-dht_hello.h \
125  gnunet-service-dht_nse.c gnunet-service-dht_nse.h \
126  gnunet-service-dht_neighbours.c gnunet-service-dht_neighbours.h \
127  gnunet-service-dht_routing.c gnunet-service-dht_routing.h 
128 gnunet_service_dht_new_LDADD = \
129   $(top_builddir)/src/statistics/libgnunetstatistics.la \
130   $(top_builddir)/src/core/libgnunetcore.la \
131   $(top_builddir)/src/nse/libgnunetnse.la \
132   $(top_builddir)/src/transport/libgnunettransport.la \
133   $(top_builddir)/src/peerinfo/libgnunetpeerinfo.la \
134   $(top_builddir)/src/hello/libgnunethello.la \
135   $(top_builddir)/src/block/libgnunetblock.la \
136   $(top_builddir)/src/datacache/libgnunetdatacache.la \
137   $(top_builddir)/src/util/libgnunetutil.la \
138   -lm
139
140 gnunet_dht_get_SOURCES = \
141  gnunet-dht-get.c         
142 gnunet_dht_get_LDADD = \
143   $(top_builddir)/src/dht/libgnunetdhtnew.la \
144   $(top_builddir)/src/core/libgnunetcore.la \
145   $(top_builddir)/src/util/libgnunetutil.la 
146 gnunet_dht_get_DEPENDENCIES = \
147   libgnunetdht.la                             
148
149 gnunet_dht_put_SOURCES = \
150  gnunet-dht-put.c         
151 gnunet_dht_put_LDADD = \
152   $(top_builddir)/src/dht/libgnunetdhtnew.la \
153   $(top_builddir)/src/core/libgnunetcore.la \
154   $(top_builddir)/src/util/libgnunetutil.la 
155 gnunet_dht_put_DEPENDENCIES = \
156   libgnunetdht.la                             
157
158 check_PROGRAMS = \
159  test_dht_api \
160  test_dht_twopeer \
161  test_dht_twopeer_put_get \
162  test_dht_twopeer_get_put \
163  test_dht_twopeer_path_tracking \
164  test_dht_multipeer 
165
166 if ENABLE_TEST_RUN
167 TESTS = test_dht_api $(check_SCRIPTS) \
168  test_dht_twopeer \
169  test_dht_twopeer_put_get \
170  test_dht_twopeer_get_put \
171  test_dht_twopeer_path_tracking \
172  test_dht_multipeer 
173 endif
174
175 test_dht_api_SOURCES = \
176  test_dht_api.c
177 test_dht_api_LDADD = \
178  $(top_builddir)/src/util/libgnunetutil.la \
179  $(top_builddir)/src/hello/libgnunethello.la \
180  $(top_builddir)/src/dht/libgnunetdhtnew.la
181 test_dht_api_DEPENDENCIES = \
182   libgnunetdht.la                           
183
184 test_dht_multipeer_SOURCES = \
185  test_dht_multipeer.c
186 test_dht_multipeer_LDADD = \
187  $(top_builddir)/src/util/libgnunetutil.la \
188  $(top_builddir)/src/testing/libgnunettesting.la \
189  $(top_builddir)/src/dht/libgnunetdht.la  
190 test_dht_multipeer_DEPENDENCIES = \
191   libgnunetdht.la                           
192
193 test_dht_twopeer_SOURCES = \
194  test_dht_twopeer.c
195 test_dht_twopeer_LDADD = \
196  $(top_builddir)/src/util/libgnunetutil.la \
197  $(top_builddir)/src/testing/libgnunettesting.la \
198  $(top_builddir)/src/dht/libgnunetdhtnew.la    
199 test_dht_twopeer_DEPENDENCIES = \
200   libgnunetdht.la                           
201
202 test_dht_twopeer_put_get_SOURCES = \
203  test_dht_twopeer_put_get.c
204 test_dht_twopeer_put_get_LDADD = \
205  $(top_builddir)/src/util/libgnunetutil.la \
206  $(top_builddir)/src/testing/libgnunettesting.la \
207  $(top_builddir)/src/dht/libgnunetdhtnew.la   
208
209 test_dht_twopeer_get_put_SOURCES = \
210  test_dht_twopeer_get_put.c
211 test_dht_twopeer_get_put_LDADD = \
212  $(top_builddir)/src/util/libgnunetutil.la \
213  $(top_builddir)/src/testing/libgnunettesting.la \
214  $(top_builddir)/src/dht/libgnunetdhtnew.la   
215
216 test_dht_twopeer_path_tracking_SOURCES = \
217  test_dht_twopeer_path_tracking.c
218 test_dht_twopeer_path_tracking_LDADD = \
219  $(top_builddir)/src/util/libgnunetutil.la \
220  $(top_builddir)/src/testing/libgnunettesting.la \
221  $(top_builddir)/src/dht/libgnunetdht.la   
222
223 EXTRA_DIST = \
224   $(check_SCRIPTS) \
225   test_dht_api_data.conf \
226   test_dht_api_peer1.conf \
227   test_dht_twopeer_data.conf \
228   test_dht_multipeer_data.conf \
229   multipeer_topo.dat
230
231 check_SCRIPTS = \
232   test_dht_tools.sh