aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorBertrand Marc <bmarc@debian.org>2020-07-04 19:06:49 +0200
committerMartin Schanzenbach <mschanzenbach@posteo.de>2020-07-05 17:19:53 +0200
commit1d417dcd0f4743976ddeecb397cb1cd8fde2f053 (patch)
tree5bfbc9d645f0a615238b4e2e7cc466252ede667c /src
parente31c1d4a9f78c4e31fda1f98fe349b33abdd01a2 (diff)
downloadgnunet-1d417dcd0f4743976ddeecb397cb1cd8fde2f053.tar.gz
gnunet-1d417dcd0f4743976ddeecb397cb1cd8fde2f053.zip
Fix_build_dependencies
Signed-off-by: Martin Schanzenbach <mschanzenbach@posteo.de>
Diffstat (limited to 'src')
-rw-r--r--src/ats-tests/Makefile.am2
-rw-r--r--src/dns/Makefile.am5
-rw-r--r--src/fs/Makefile.am5
-rw-r--r--src/json/Makefile.am4
-rw-r--r--src/peerinfo-tool/Makefile.am9
-rw-r--r--src/reclaim/Makefile.am9
-rw-r--r--src/revocation/Makefile.am6
-rw-r--r--src/testbed/Makefile.am6
-rw-r--r--src/testing/Makefile.am3
-rw-r--r--src/transport/Makefile.am12
10 files changed, 61 insertions, 0 deletions
diff --git a/src/ats-tests/Makefile.am b/src/ats-tests/Makefile.am
index 1375d1505..cc30f660a 100644
--- a/src/ats-tests/Makefile.am
+++ b/src/ats-tests/Makefile.am
@@ -41,8 +41,10 @@ libgnunetatstesting_la_SOURCES = \
41 ats-testing-experiment.c ats-testing-preferences.c 41 ats-testing-experiment.c ats-testing-preferences.c
42libgnunetatstesting_la_LIBADD = \ 42libgnunetatstesting_la_LIBADD = \
43 $(top_builddir)/src/testbed/libgnunettestbed.la \ 43 $(top_builddir)/src/testbed/libgnunettestbed.la \
44 $(top_builddir)/src/statistics/libgnunetstatistics.la \
44 $(top_builddir)/src/core/libgnunetcore.la \ 45 $(top_builddir)/src/core/libgnunetcore.la \
45 $(top_builddir)/src/transport/libgnunettransport.la \ 46 $(top_builddir)/src/transport/libgnunettransport.la \
47 $(top_builddir)/src/hello/libgnunethello.la \
46 $(top_builddir)/src/ats/libgnunetats.la \ 48 $(top_builddir)/src/ats/libgnunetats.la \
47 $(top_builddir)/src/util/libgnunetutil.la \ 49 $(top_builddir)/src/util/libgnunetutil.la \
48 $(GN_LIBINTL) 50 $(GN_LIBINTL)
diff --git a/src/dns/Makefile.am b/src/dns/Makefile.am
index 17be841f5..45107304b 100644
--- a/src/dns/Makefile.am
+++ b/src/dns/Makefile.am
@@ -81,6 +81,11 @@ libgnunet_plugin_block_dns_la_SOURCES = \
81 plugin_block_dns.c 81 plugin_block_dns.c
82libgnunet_plugin_block_dns_la_LIBADD = \ 82libgnunet_plugin_block_dns_la_LIBADD = \
83 $(top_builddir)/src/block/libgnunetblockgroup.la \ 83 $(top_builddir)/src/block/libgnunetblockgroup.la \
84 $(top_builddir)/src/block/libgnunetblock.la \
85 $(top_builddir)/src/util/libgnunetutil.la
86libgnunet_plugin_block_dns_la_DEPENDENCIES = \
87 $(top_builddir)/src/block/libgnunetblockgroup.la \
88 $(top_builddir)/src/block/libgnunetblock.la \
84 $(top_builddir)/src/util/libgnunetutil.la 89 $(top_builddir)/src/util/libgnunetutil.la
85libgnunet_plugin_block_dns_la_LDFLAGS = \ 90libgnunet_plugin_block_dns_la_LDFLAGS = \
86 $(GN_LIBINTL) \ 91 $(GN_LIBINTL) \
diff --git a/src/fs/Makefile.am b/src/fs/Makefile.am
index b1555be60..25590c6f7 100644
--- a/src/fs/Makefile.am
+++ b/src/fs/Makefile.am
@@ -46,8 +46,13 @@ libgnunetfs_la_SOURCES = \
46 46
47libgnunetfs_la_LIBADD = \ 47libgnunetfs_la_LIBADD = \
48 $(top_builddir)/src/datastore/libgnunetdatastore.la \ 48 $(top_builddir)/src/datastore/libgnunetdatastore.la \
49 $(top_builddir)/src/statistics/libgnunetstatistics.la \
49 $(top_builddir)/src/util/libgnunetutil.la \ 50 $(top_builddir)/src/util/libgnunetutil.la \
50 $(GN_LIBINTL) $(XLIB) $(LIBGCRYPT_LIBS) -lunistring 51 $(GN_LIBINTL) $(XLIB) $(LIBGCRYPT_LIBS) -lunistring
52libgnunetfs_la_DEPENDENCIES = \
53 $(top_builddir)/src/datastore/libgnunetdatastore.la \
54 $(top_builddir)/src/statistics/libgnunetstatistics.la \
55 $(top_builddir)/src/util/libgnunetutil.la
51 56
52if HAVE_LIBEXTRACTOR 57if HAVE_LIBEXTRACTOR
53libgnunetfs_la_LIBADD += \ 58libgnunetfs_la_LIBADD += \
diff --git a/src/json/Makefile.am b/src/json/Makefile.am
index 9cd80851c..2ed05c35a 100644
--- a/src/json/Makefile.am
+++ b/src/json/Makefile.am
@@ -27,6 +27,10 @@ libgnunetjson_la_LIBADD = \
27 $(MHD_LIBS) \ 27 $(MHD_LIBS) \
28 $(XLIB) \ 28 $(XLIB) \
29 $(Z_LIBS) 29 $(Z_LIBS)
30libgnunetjson_la_DEPENDENCIES = \
31 $(top_builddir)/src/util/libgnunetutil.la \
32 $(top_builddir)/src/gnsrecord/libgnunetgnsrecord.la
33
30 34
31check_PROGRAMS = \ 35check_PROGRAMS = \
32 test_json \ 36 test_json \
diff --git a/src/peerinfo-tool/Makefile.am b/src/peerinfo-tool/Makefile.am
index dfcdcd3da..74af5890b 100644
--- a/src/peerinfo-tool/Makefile.am
+++ b/src/peerinfo-tool/Makefile.am
@@ -21,10 +21,19 @@ libgnunet_plugin_rest_peerinfo_la_LIBADD = \
21 $(top_builddir)/src/hello/libgnunethello.la \ 21 $(top_builddir)/src/hello/libgnunethello.la \
22 $(top_builddir)/src/peerinfo/libgnunetpeerinfo.la \ 22 $(top_builddir)/src/peerinfo/libgnunetpeerinfo.la \
23 $(top_builddir)/src/transport/libgnunettransport.la \ 23 $(top_builddir)/src/transport/libgnunettransport.la \
24 $(top_builddir)/src/ats/libgnunetats.la \
24 $(top_builddir)/src/rest/libgnunetrest.la \ 25 $(top_builddir)/src/rest/libgnunetrest.la \
25 $(top_builddir)/src/json/libgnunetjson.la \ 26 $(top_builddir)/src/json/libgnunetjson.la \
26 $(top_builddir)/src/util/libgnunetutil.la $(XLIBS) \ 27 $(top_builddir)/src/util/libgnunetutil.la $(XLIBS) \
27 $(LTLIBINTL) -ljansson $(MHD_LIBS) 28 $(LTLIBINTL) -ljansson $(MHD_LIBS)
29libgnunet_plugin_rest_peerinfo_la_DEPENDENCIES = \
30 $(top_builddir)/src/hello/libgnunethello.la \
31 $(top_builddir)/src/peerinfo/libgnunetpeerinfo.la \
32 $(top_builddir)/src/transport/libgnunettransport.la \
33 $(top_builddir)/src/ats/libgnunetats.la \
34 $(top_builddir)/src/rest/libgnunetrest.la \
35 $(top_builddir)/src/json/libgnunetjson.la \
36 $(top_builddir)/src/util/libgnunetutil.la
28libgnunet_plugin_rest_peerinfo_la_LDFLAGS = \ 37libgnunet_plugin_rest_peerinfo_la_LDFLAGS = \
29 $(GN_PLUGIN_LDFLAGS) 38 $(GN_PLUGIN_LDFLAGS)
30libgnunet_plugin_rest_peerinfo_la_CFLAGS = $(MHD_CFLAGS) $(AM_CFLAGS) 39libgnunet_plugin_rest_peerinfo_la_CFLAGS = $(MHD_CFLAGS) $(AM_CFLAGS)
diff --git a/src/reclaim/Makefile.am b/src/reclaim/Makefile.am
index b6d73bdf7..a9829c47e 100644
--- a/src/reclaim/Makefile.am
+++ b/src/reclaim/Makefile.am
@@ -51,10 +51,19 @@ libgnunet_plugin_rest_reclaim_la_LIBADD = \
51 $(top_builddir)/src/identity/libgnunetidentity.la \ 51 $(top_builddir)/src/identity/libgnunetidentity.la \
52 libgnunetreclaim.la \ 52 libgnunetreclaim.la \
53 $(top_builddir)/src/json/libgnunetjson.la \ 53 $(top_builddir)/src/json/libgnunetjson.la \
54 $(top_builddir)/src/gnsrecord/libgnunetgnsrecord.la \
54 $(top_builddir)/src/rest/libgnunetrest.la \ 55 $(top_builddir)/src/rest/libgnunetrest.la \
55 $(top_builddir)/src/namestore/libgnunetnamestore.la \ 56 $(top_builddir)/src/namestore/libgnunetnamestore.la \
56 $(top_builddir)/src/util/libgnunetutil.la $(XLIBS) \ 57 $(top_builddir)/src/util/libgnunetutil.la $(XLIBS) \
57 $(LTLIBINTL) -ljansson $(MHD_LIBS) 58 $(LTLIBINTL) -ljansson $(MHD_LIBS)
59libgnunet_plugin_rest_reclaim_la_DEPENDENCIES = \
60 $(top_builddir)/src/identity/libgnunetidentity.la \
61 libgnunetreclaim.la \
62 $(top_builddir)/src/json/libgnunetjson.la \
63 $(top_builddir)/src/gnsrecord/libgnunetgnsrecord.la \
64 $(top_builddir)/src/rest/libgnunetrest.la \
65 $(top_builddir)/src/namestore/libgnunetnamestore.la \
66 $(top_builddir)/src/util/libgnunetutil.la
58libgnunet_plugin_rest_reclaim_la_LDFLAGS = \ 67libgnunet_plugin_rest_reclaim_la_LDFLAGS = \
59 $(GN_PLUGIN_LDFLAGS) 68 $(GN_PLUGIN_LDFLAGS)
60libgnunet_plugin_rest_reclaim_la_CFLAGS = $(MHD_CFLAGS) $(AM_CFLAGS) 69libgnunet_plugin_rest_reclaim_la_CFLAGS = $(MHD_CFLAGS) $(AM_CFLAGS)
diff --git a/src/revocation/Makefile.am b/src/revocation/Makefile.am
index 6efd461c1..a90f8cd79 100644
--- a/src/revocation/Makefile.am
+++ b/src/revocation/Makefile.am
@@ -28,8 +28,14 @@ libgnunet_plugin_block_revocation_la_SOURCES = \
28libgnunet_plugin_block_revocation_la_LIBADD = \ 28libgnunet_plugin_block_revocation_la_LIBADD = \
29 libgnunetrevocation.la \ 29 libgnunetrevocation.la \
30 $(top_builddir)/src/block/libgnunetblockgroup.la \ 30 $(top_builddir)/src/block/libgnunetblockgroup.la \
31 $(top_builddir)/src/block/libgnunetblock.la \
31 $(top_builddir)/src/util/libgnunetutil.la \ 32 $(top_builddir)/src/util/libgnunetutil.la \
32 $(LTLIBINTL) 33 $(LTLIBINTL)
34libgnunet_plugin_block_revocation_la_DEPENDENCIES = \
35 libgnunetrevocation.la \
36 $(top_builddir)/src/block/libgnunetblockgroup.la \
37 $(top_builddir)/src/block/libgnunetblock.la \
38 $(top_builddir)/src/util/libgnunetutil.la
33libgnunet_plugin_block_revocation_la_LDFLAGS = \ 39libgnunet_plugin_block_revocation_la_LDFLAGS = \
34 $(GN_PLUGIN_LDFLAGS) 40 $(GN_PLUGIN_LDFLAGS)
35 41
diff --git a/src/testbed/Makefile.am b/src/testbed/Makefile.am
index 62b49af78..7c1e217bb 100644
--- a/src/testbed/Makefile.am
+++ b/src/testbed/Makefile.am
@@ -111,6 +111,12 @@ libgnunettestbed_la_LIBADD = $(XLIB) \
111 $(top_builddir)/src/util/libgnunetutil.la \ 111 $(top_builddir)/src/util/libgnunetutil.la \
112 $(top_builddir)/src/testing/libgnunettesting.la \ 112 $(top_builddir)/src/testing/libgnunettesting.la \
113 $(LTLIBINTL) 113 $(LTLIBINTL)
114libgnunettestbed_la_DEPENDENCIES = \
115 $(top_builddir)/src/statistics/libgnunetstatistics.la \
116 $(top_builddir)/src/transport/libgnunettransport.la \
117 $(top_builddir)/src/hello/libgnunethello.la \
118 $(top_builddir)/src/util/libgnunetutil.la \
119 $(top_builddir)/src/testing/libgnunettesting.la
114libgnunettestbed_la_LDFLAGS = \ 120libgnunettestbed_la_LDFLAGS = \
115 $(GN_LIB_LDFLAGS) \ 121 $(GN_LIB_LDFLAGS) \
116 -version-info 0:0:0 122 -version-info 0:0:0
diff --git a/src/testing/Makefile.am b/src/testing/Makefile.am
index 9c6357455..2b599f55b 100644
--- a/src/testing/Makefile.am
+++ b/src/testing/Makefile.am
@@ -20,6 +20,9 @@ libgnunettesting_la_LIBADD = \
20 $(top_builddir)/src/arm/libgnunetarm.la \ 20 $(top_builddir)/src/arm/libgnunetarm.la \
21 $(top_builddir)/src/util/libgnunetutil.la \ 21 $(top_builddir)/src/util/libgnunetutil.la \
22 $(LTLIBINTL) 22 $(LTLIBINTL)
23libgnunettesting_la_DEPENDENCIES = \
24 $(top_builddir)/src/arm/libgnunetarm.la \
25 $(top_builddir)/src/util/libgnunetutil.la
23libgnunettesting_la_LDFLAGS = \ 26libgnunettesting_la_LDFLAGS = \
24 $(GN_LIB_LDFLAGS) \ 27 $(GN_LIB_LDFLAGS) \
25 -version-info 2:0:1 28 -version-info 2:0:1
diff --git a/src/transport/Makefile.am b/src/transport/Makefile.am
index eadb601ef..354bb1cf4 100644
--- a/src/transport/Makefile.am
+++ b/src/transport/Makefile.am
@@ -155,7 +155,15 @@ libgnunettransporttesting_la_LIBADD = \
155 $(top_builddir)/src/ats/libgnunetats.la \ 155 $(top_builddir)/src/ats/libgnunetats.la \
156 $(top_builddir)/src/util/libgnunetutil.la \ 156 $(top_builddir)/src/util/libgnunetutil.la \
157 $(top_builddir)/src/testing/libgnunettesting.la \ 157 $(top_builddir)/src/testing/libgnunettesting.la \
158 $(top_builddir)/src/arm/libgnunetarm.la \
158 $(GN_LIBINTL) 159 $(GN_LIBINTL)
160libgnunettransporttesting_la_DEPENDENCIES = \
161 libgnunettransport.la \
162 $(top_builddir)/src/hello/libgnunethello.la \
163 $(top_builddir)/src/ats/libgnunetats.la \
164 $(top_builddir)/src/util/libgnunetutil.la \
165 $(top_builddir)/src/testing/libgnunettesting.la \
166 $(top_builddir)/src/arm/libgnunetarm.la
159libgnunettransporttesting_la_LDFLAGS = \ 167libgnunettransporttesting_la_LDFLAGS = \
160 $(GN_LIB_LDFLAGS) 168 $(GN_LIB_LDFLAGS)
161 169
@@ -185,6 +193,10 @@ libgnunettransport_la_LIBADD = \
185 $(top_builddir)/src/ats/libgnunetats.la \ 193 $(top_builddir)/src/ats/libgnunetats.la \
186 $(top_builddir)/src/util/libgnunetutil.la \ 194 $(top_builddir)/src/util/libgnunetutil.la \
187 $(GN_LIBINTL) 195 $(GN_LIBINTL)
196libgnunettransport_la_DEPENDENCIES = \
197 $(top_builddir)/src/hello/libgnunethello.la \
198 $(top_builddir)/src/ats/libgnunetats.la \
199 $(top_builddir)/src/util/libgnunetutil.la
188libgnunettransport_la_LDFLAGS = \ 200libgnunettransport_la_LDFLAGS = \
189 $(GN_LIB_LDFLAGS) \ 201 $(GN_LIB_LDFLAGS) \
190 -version-info 4:0:2 202 -version-info 4:0:2