aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/mesh/Makefile.am5
-rw-r--r--src/transport/Makefile.am6
2 files changed, 7 insertions, 4 deletions
diff --git a/src/mesh/Makefile.am b/src/mesh/Makefile.am
index ee3e329fa..6adcdf425 100644
--- a/src/mesh/Makefile.am
+++ b/src/mesh/Makefile.am
@@ -23,7 +23,8 @@ lib_LTLIBRARIES = \
23 libgnunetmesh.la 23 libgnunetmesh.la
24 24
25gnunet_service_mesh_SOURCES = \ 25gnunet_service_mesh_SOURCES = \
26 gnunet-service-mesh.c mesh_tunnel_tree.c 26 gnunet-service-mesh.c \
27 mesh_tunnel_tree.c mesh_tunnel_tree.h
27gnunet_service_mesh_LDADD = \ 28gnunet_service_mesh_LDADD = \
28 $(top_builddir)/src/core/libgnunetcore.la\ 29 $(top_builddir)/src/core/libgnunetcore.la\
29 $(top_builddir)/src/dht/libgnunetdht.la \ 30 $(top_builddir)/src/dht/libgnunetdht.la \
@@ -34,7 +35,7 @@ gnunet_service_mesh_LDADD = \
34 $(top_builddir)/src/util/libgnunetutil.la 35 $(top_builddir)/src/util/libgnunetutil.la
35 36
36libgnunetmesh_la_SOURCES = \ 37libgnunetmesh_la_SOURCES = \
37 mesh_api.c mesh.h 38 mesh_api.c mesh.h mesh_protocol.h
38libgnunetmesh_la_LIBADD = \ 39libgnunetmesh_la_LIBADD = \
39 $(top_builddir)/src/util/libgnunetutil.la \ 40 $(top_builddir)/src/util/libgnunetutil.la \
40 $(XLIB) 41 $(XLIB)
diff --git a/src/transport/Makefile.am b/src/transport/Makefile.am
index 72a319b44..c71d4fd20 100644
--- a/src/transport/Makefile.am
+++ b/src/transport/Makefile.am
@@ -210,7 +210,8 @@ libgnunet_plugin_transport_unix_la_LDFLAGS = \
210 $(GN_PLUGIN_LDFLAGS) 210 $(GN_PLUGIN_LDFLAGS)
211 211
212libgnunet_plugin_transport_http_la_SOURCES = \ 212libgnunet_plugin_transport_http_la_SOURCES = \
213 plugin_transport_http.c plugin_transport_http_client.c plugin_transport_http_server.c 213 plugin_transport_http.c plugin_transport_http.h. \
214 plugin_transport_http_client.c plugin_transport_http_server.c
214libgnunet_plugin_transport_http_la_LIBADD = \ 215libgnunet_plugin_transport_http_la_LIBADD = \
215 $(top_builddir)/src/hello/libgnunethello.la \ 216 $(top_builddir)/src/hello/libgnunethello.la \
216 $(top_builddir)/src/statistics/libgnunetstatistics.la \ 217 $(top_builddir)/src/statistics/libgnunetstatistics.la \
@@ -227,7 +228,8 @@ libgnunet_plugin_transport_http_la_CPPFLAGS = \
227 @LIBCURL_CPPFLAGS@ 228 @LIBCURL_CPPFLAGS@
228 229
229libgnunet_plugin_transport_https_la_SOURCES = \ 230libgnunet_plugin_transport_https_la_SOURCES = \
230 plugin_transport_http.c plugin_transport_http_client.c plugin_transport_http_server.c 231 plugin_transport_http.c plugin_transport_http.h \
232 plugin_transport_http_client.c plugin_transport_http_server.c
231libgnunet_plugin_transport_https_la_LIBADD = \ 233libgnunet_plugin_transport_https_la_LIBADD = \
232 $(top_builddir)/src/hello/libgnunethello.la \ 234 $(top_builddir)/src/hello/libgnunethello.la \
233 $(top_builddir)/src/statistics/libgnunetstatistics.la \ 235 $(top_builddir)/src/statistics/libgnunetstatistics.la \