From c337ebf6be7f4c4cd00ce80aa9e6e968d86be437 Mon Sep 17 00:00:00 2001 From: Christian Grothoff Date: Tue, 27 Sep 2011 11:30:36 +0000 Subject: [PATCH] add new DHT code to build, it finally compiles --- src/dht/Makefile.am | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/src/dht/Makefile.am b/src/dht/Makefile.am index 5ad1d296f..3d30f98d7 100644 --- a/src/dht/Makefile.am +++ b/src/dht/Makefile.am @@ -80,8 +80,18 @@ libgnunetdht_la_LDFLAGS = \ $(GN_LIB_LDFLAGS) $(WINFLAGS) \ -version-info 0:0:0 +libgnunetdhtnew_la_SOURCES = \ + dht_api_new.c dht_new.h +libgnunetdhtnew_la_LIBADD = \ + $(top_builddir)/src/util/libgnunetutil.la \ + $(XLIB) +libgnunetdhtnew_la_LDFLAGS = \ + $(GN_LIB_LDFLAGS) $(WINFLAGS) \ + -version-info 0:0:0 + bin_PROGRAMS = \ gnunet-service-dht \ + gnunet-service-dht-new \ gnunet-dht-get \ gnunet-dht-get-peer \ gnunet-dht-put @@ -106,6 +116,24 @@ gnunet_service_dht_LDADD = \ gnunet_service_dht_DEPENDENCIES = \ libgnunetdhtlog.la +gnunet_service_dht_new_SOURCES = \ + gnunet-service-dht-new.c gnunet-service-dht.h \ + gnunet-service-dht_clients.c gnunet-service-dht_clients.h \ + gnunet-service-dht_datacache.c gnunet-service-dht_datacache.h \ + gnunet-service-dht_nse.c gnunet-service-dht_nse.h \ + gnunet-service-dht_neighbours.c gnunet-service-dht_neighbours.h \ + gnunet-service-dht_routing.c gnunet-service-dht_routing.h +gnunet_service_dht_new_LDADD = \ + $(top_builddir)/src/statistics/libgnunetstatistics.la \ + $(top_builddir)/src/core/libgnunetcore.la \ + $(top_builddir)/src/nse/libgnunetnse.la \ + $(top_builddir)/src/transport/libgnunettransport.la \ + $(top_builddir)/src/hello/libgnunethello.la \ + $(top_builddir)/src/block/libgnunetblock.la \ + $(top_builddir)/src/datacache/libgnunetdatacache.la \ + $(top_builddir)/src/util/libgnunetutil.la \ + -lm + gnunet_dht_get_SOURCES = \ gnunet-dht-get.c gnunet_dht_get_LDADD = \ -- 2.25.1