aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorNathan S. Evans <evans@in.tum.de>2010-09-07 08:40:15 +0000
committerNathan S. Evans <evans@in.tum.de>2010-09-07 08:40:15 +0000
commita310b75c12232580e1c389667308a0e309fa83d3 (patch)
treeb4e24be7399aec514fed8edb44f7870624108bd3 /src
parentaa480c85a78c7320c4f9f003d58487f21716eab0 (diff)
downloadgnunet-a310b75c12232580e1c389667308a0e309fa83d3.tar.gz
gnunet-a310b75c12232580e1c389667308a0e309fa83d3.zip
add math support
Diffstat (limited to 'src')
-rw-r--r--src/dht/Makefile.am23
1 files changed, 10 insertions, 13 deletions
diff --git a/src/dht/Makefile.am b/src/dht/Makefile.am
index 7f75eea7f..ccfc5a041 100644
--- a/src/dht/Makefile.am
+++ b/src/dht/Makefile.am
@@ -104,7 +104,7 @@ gnunet_service_dht_LDADD = \
104 $(top_builddir)/src/hello/libgnunethello.la \ 104 $(top_builddir)/src/hello/libgnunethello.la \
105 $(top_builddir)/src/datacache/libgnunetdatacache.la \ 105 $(top_builddir)/src/datacache/libgnunetdatacache.la \
106 $(top_builddir)/src/util/libgnunetutil.la \ 106 $(top_builddir)/src/util/libgnunetutil.la \
107 $(top_builddir)/src/dht/libgnunetdhtlog.la 107 $(top_builddir)/src/dht/libgnunetdhtlog.la -lm
108 108
109gnunet_service_dht_can_SOURCES = \ 109gnunet_service_dht_can_SOURCES = \
110 dht_can.c dht_can_helper.c dht_can_helper.h 110 dht_can.c dht_can_helper.c dht_can_helper.h
@@ -147,17 +147,6 @@ gnunet_service_dht_koorde_LDADD = \
147 $(top_builddir)/src/datacache/libgnunetdatacache.la \ 147 $(top_builddir)/src/datacache/libgnunetdatacache.la \
148 $(top_builddir)/src/util/libgnunetutil.la 148 $(top_builddir)/src/util/libgnunetutil.la
149 149
150#gnunet_service_dht_new_SOURCES = \
151# gnunet-service-dht-new.c
152#gnunet_service_dht_new_LDADD = \
153# $(top_builddir)/src/statistics/libgnunetstatistics.la \
154# $(top_builddir)/src/core/libgnunetcore.la \
155# $(top_builddir)/src/transport/libgnunettransport.la \
156# $(top_builddir)/src/hello/libgnunethello.la \
157# $(top_builddir)/src/datacache/libgnunetdatacache.la \
158# $(top_builddir)/src/util/libgnunetutil.la \
159# $(top_builddir)/src/dht/libgnunetdhtlog.la
160
161gnunet_dht_get_SOURCES = \ 150gnunet_dht_get_SOURCES = \
162 gnunet-dht-get.c 151 gnunet-dht-get.c
163gnunet_dht_get_LDADD = \ 152gnunet_dht_get_LDADD = \
@@ -195,7 +184,8 @@ check_PROGRAMS = $(STUD_TESTS) \
195 test_dht_twopeer \ 184 test_dht_twopeer \
196 test_dht_twopeer_put_get \ 185 test_dht_twopeer_put_get \
197 test_dht_multipeer \ 186 test_dht_multipeer \
198 test_dhtlog 187 test_dhtlog
188# test_hash_operations
199 189
200if !DISABLE_TEST_RUN 190if !DISABLE_TEST_RUN
201TESTS = test_dht_api $(check_SCRIPTS) \ 191TESTS = test_dht_api $(check_SCRIPTS) \
@@ -216,6 +206,13 @@ test_dht_multipeer_LDADD = \
216 $(top_builddir)/src/util/libgnunetutil.la \ 206 $(top_builddir)/src/util/libgnunetutil.la \
217 $(top_builddir)/src/testing/libgnunettesting.la \ 207 $(top_builddir)/src/testing/libgnunettesting.la \
218 $(top_builddir)/src/dht/libgnunetdht.la 208 $(top_builddir)/src/dht/libgnunetdht.la
209
210#test_hash_operations_SOURCES = \
211# test_hash_operations.c
212#test_hash_operations_LDADD = \
213# $(top_builddir)/src/util/libgnunetutil.la \
214# $(top_builddir)/src/testing/libgnunettesting.la \
215# $(top_builddir)/src/dht/libgnunetdht.la
219 216
220test_dht_twopeer_SOURCES = \ 217test_dht_twopeer_SOURCES = \
221 test_dht_twopeer.c 218 test_dht_twopeer.c