aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorBart Polot <bart@net.in.tum.de>2012-10-30 13:37:25 +0000
committerBart Polot <bart@net.in.tum.de>2012-10-30 13:37:25 +0000
commit94681cb753bc028f0fccc1b901705b16cadf62da (patch)
tree944eb6d6d4af0825c34e8ef32a2b5630e65de14d /src
parent61601fa8f6b8b11ad32708357fa525736cb00273 (diff)
downloadgnunet-94681cb753bc028f0fccc1b901705b16cadf62da.tar.gz
gnunet-94681cb753bc028f0fccc1b901705b16cadf62da.zip
- add new service to rewrite flow control
Diffstat (limited to 'src')
-rw-r--r--src/mesh/Makefile.am28
1 files changed, 27 insertions, 1 deletions
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
21AM_CLFAGS = -g 21AM_CLFAGS = -g
22 22
23libexec_PROGRAMS = \ 23libexec_PROGRAMS = \
24 gnunet-service-mesh 24 gnunet-service-mesh gnunet-service-mesh-new
25 25
26lib_LTLIBRARIES = \ 26lib_LTLIBRARIES = \
27 libgnunetmesh.la \ 27 libgnunetmesh.la \
@@ -88,6 +88,32 @@ if LINUX
88gnunet_service_mesh_LDFLAGS = -lrt 88gnunet_service_mesh_LDFLAGS = -lrt
89endif 89endif
90 90
91gnunet_service_mesh_new_SOURCES = \
92 gnunet-service-mesh-new.c \
93 mesh_tunnel_tree.c \
94 mesh_common.c
95gnunet_service_mesh_new_CFLAGS = $(AM_CFLAGS)
96gnunet_service_mesh_new_LDADD = \
97 $(top_builddir)/src/util/libgnunetutil.la \
98 $(top_builddir)/src/core/libgnunetcore.la \
99 $(top_builddir)/src/dht/libgnunetdht.la \
100 $(top_builddir)/src/statistics/libgnunetstatistics.la \
101 $(top_builddir)/src/block/libgnunetblock.la \
102 $(top_builddir)/src/mesh/libgnunetmeshblock.la \
103 $(top_builddir)/src/regex/libgnunetregex.la
104gnunet_service_mesh_new_DEPENDENCIES = \
105 $(top_builddir)/src/util/libgnunetutil.la \
106 $(top_builddir)/src/core/libgnunetcore.la \
107 $(top_builddir)/src/dht/libgnunetdht.la \
108 $(top_builddir)/src/statistics/libgnunetstatistics.la \
109 $(top_builddir)/src/block/libgnunetblock.la \
110 libgnunetmeshblock.la \
111 $(top_builddir)/src/regex/libgnunetregex.la
112if LINUX
113gnunet_service_mesh_new_LDFLAGS = -lrt
114endif
115
116
91noinst_PROGRAMS = \ 117noinst_PROGRAMS = \
92gnunet-regex-profiler 118gnunet-regex-profiler
93 119