From 94681cb753bc028f0fccc1b901705b16cadf62da Mon Sep 17 00:00:00 2001 From: Bart Polot Date: Tue, 30 Oct 2012 13:37:25 +0000 Subject: [PATCH] - add new service to rewrite flow control --- src/mesh/Makefile.am | 28 +++++++++++++++++++++++++++- 1 file changed, 27 insertions(+), 1 deletion(-) diff --git a/src/mesh/Makefile.am b/src/mesh/Makefile.am index 8b45dd736..5715826c8 100644 --- a/src/mesh/Makefile.am +++ b/src/mesh/Makefile.am @@ -21,7 +21,7 @@ plugindir = $(libdir)/gnunet AM_CLFAGS = -g libexec_PROGRAMS = \ - gnunet-service-mesh + gnunet-service-mesh gnunet-service-mesh-new lib_LTLIBRARIES = \ libgnunetmesh.la \ @@ -88,6 +88,32 @@ if LINUX gnunet_service_mesh_LDFLAGS = -lrt endif +gnunet_service_mesh_new_SOURCES = \ + gnunet-service-mesh-new.c \ + mesh_tunnel_tree.c \ + mesh_common.c +gnunet_service_mesh_new_CFLAGS = $(AM_CFLAGS) +gnunet_service_mesh_new_LDADD = \ + $(top_builddir)/src/util/libgnunetutil.la \ + $(top_builddir)/src/core/libgnunetcore.la \ + $(top_builddir)/src/dht/libgnunetdht.la \ + $(top_builddir)/src/statistics/libgnunetstatistics.la \ + $(top_builddir)/src/block/libgnunetblock.la \ + $(top_builddir)/src/mesh/libgnunetmeshblock.la \ + $(top_builddir)/src/regex/libgnunetregex.la +gnunet_service_mesh_new_DEPENDENCIES = \ + $(top_builddir)/src/util/libgnunetutil.la \ + $(top_builddir)/src/core/libgnunetcore.la \ + $(top_builddir)/src/dht/libgnunetdht.la \ + $(top_builddir)/src/statistics/libgnunetstatistics.la \ + $(top_builddir)/src/block/libgnunetblock.la \ + libgnunetmeshblock.la \ + $(top_builddir)/src/regex/libgnunetregex.la +if LINUX +gnunet_service_mesh_new_LDFLAGS = -lrt +endif + + noinst_PROGRAMS = \ gnunet-regex-profiler -- 2.25.1