aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBart Polot <bart@net.in.tum.de>2012-07-18 16:21:49 +0000
committerBart Polot <bart@net.in.tum.de>2012-07-18 16:21:49 +0000
commit580843dbcd2aa3c521f7312544130693dc40a1ad (patch)
tree58d739954d7ef50366087710d28942b4a2b1b8e8
parent974cdab3af0e295846bd7869b14788eead584570 (diff)
downloadgnunet-580843dbcd2aa3c521f7312544130693dc40a1ad.tar.gz
gnunet-580843dbcd2aa3c521f7312544130693dc40a1ad.zip
- try to fix compilation on Windows
-rw-r--r--src/mesh/Makefile.am35
1 files changed, 17 insertions, 18 deletions
diff --git a/src/mesh/Makefile.am b/src/mesh/Makefile.am
index f74c224ab..a69c018de 100644
--- a/src/mesh/Makefile.am
+++ b/src/mesh/Makefile.am
@@ -41,24 +41,6 @@ libgnunet_plugin_block_mesh_la_DEPENDENCIES = \
41 $(top_builddir)/src/block/libgnunetblock.la \ 41 $(top_builddir)/src/block/libgnunetblock.la \
42 $(top_builddir)/src/util/libgnunetutil.la 42 $(top_builddir)/src/util/libgnunetutil.la
43 43
44gnunet_service_mesh_SOURCES = \
45 gnunet-service-mesh.c \
46 mesh_tunnel_tree.c mesh_tunnel_tree.h
47gnunet_service_mesh_LDADD = \
48 $(top_builddir)/src/util/libgnunetutil.la \
49 $(top_builddir)/src/core/libgnunetcore.la \
50 $(top_builddir)/src/dht/libgnunetdht.la \
51 $(top_builddir)/src/block/libgnunetblock.la \
52 libgnunetmeshblock.la \
53 $(top_builddir)/src/regex/libgnunetregex.la
54gnunet_service_mesh_DEPENDENCIES = \
55 $(top_builddir)/src/util/libgnunetutil.la \
56 $(top_builddir)/src/core/libgnunetcore.la \
57 $(top_builddir)/src/dht/libgnunetdht.la \
58 $(top_builddir)/src/block/libgnunetblock.la \
59 libgnunetmeshblock.la \
60 $(top_builddir)/src/regex/libgnunetregex.la
61
62libgnunetmesh_la_SOURCES = \ 44libgnunetmesh_la_SOURCES = \
63 mesh_api.c mesh.h mesh_protocol.h 45 mesh_api.c mesh.h mesh_protocol.h
64libgnunetmesh_la_LIBADD = \ 46libgnunetmesh_la_LIBADD = \
@@ -79,6 +61,23 @@ libgnunetmeshblock_la_LDFLAGS = \
79 $(GN_LIB_LDFLAGS) $(WINFLAGS) \ 61 $(GN_LIB_LDFLAGS) $(WINFLAGS) \
80 -version-info 1:0:0 62 -version-info 1:0:0
81 63
64gnunet_service_mesh_SOURCES = \
65 gnunet-service-mesh.c \
66 mesh_tunnel_tree.c mesh_tunnel_tree.h
67gnunet_service_mesh_LDADD = \
68 $(top_builddir)/src/util/libgnunetutil.la \
69 $(top_builddir)/src/core/libgnunetcore.la \
70 $(top_builddir)/src/dht/libgnunetdht.la \
71 $(top_builddir)/src/block/libgnunetblock.la \
72 $(top_builddir)/src/mesh/libgnunetmeshblock.la \
73 $(top_builddir)/src/regex/libgnunetregex.la
74gnunet_service_mesh_DEPENDENCIES = \
75 $(top_builddir)/src/util/libgnunetutil.la \
76 $(top_builddir)/src/core/libgnunetcore.la \
77 $(top_builddir)/src/dht/libgnunetdht.la \
78 $(top_builddir)/src/block/libgnunetblock.la \
79 $(top_builddir)/src/mesh/libgnunetmeshblock.la \
80 $(top_builddir)/src/regex/libgnunetregex.la
82 81
83check_PROGRAMS = \ 82check_PROGRAMS = \
84 test_mesh_api \ 83 test_mesh_api \