aboutsummaryrefslogtreecommitdiff
path: root/src/cadet
diff options
context:
space:
mode:
authorMartin Schanzenbach <schanzen@gnunet.org>2023-10-18 13:37:38 +0200
committerMartin Schanzenbach <schanzen@gnunet.org>2023-10-18 13:37:38 +0200
commit9ef4abad615bea12d13be542b8ae5fbeb2dfee32 (patch)
tree8875a687e004d331c9ea6a1d511a328c72b88113 /src/cadet
parente95236b3ed78cd597c15f34b89385295702b627f (diff)
downloadgnunet-9ef4abad615bea12d13be542b8ae5fbeb2dfee32.tar.gz
gnunet-9ef4abad615bea12d13be542b8ae5fbeb2dfee32.zip
NEWS: Refactoring components under src/ into lib/, plugin/, cli/ and service/
This also includes a necessary API refactoring of crypto from IDENTITY to UTIL.
Diffstat (limited to 'src/cadet')
-rw-r--r--src/cadet/Makefile.am12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/cadet/Makefile.am b/src/cadet/Makefile.am
index 3f1c79de0..b28286197 100644
--- a/src/cadet/Makefile.am
+++ b/src/cadet/Makefile.am
@@ -35,7 +35,7 @@ libgnunetcadet_la_SOURCES = \
35 cadet_api_list_tunnels.c \ 35 cadet_api_list_tunnels.c \
36 cadet_api_helper.c 36 cadet_api_helper.c
37libgnunetcadet_la_LIBADD = \ 37libgnunetcadet_la_LIBADD = \
38 $(top_builddir)/src/util/libgnunetutil.la \ 38 $(top_builddir)/src/lib/util/libgnunetutil.la \
39 $(XLIB) \ 39 $(XLIB) \
40 $(LTLIBINTL) 40 $(LTLIBINTL)
41libgnunetcadet_la_LDFLAGS = \ 41libgnunetcadet_la_LDFLAGS = \
@@ -46,7 +46,7 @@ gnunet_cadet_SOURCES = \
46 gnunet-cadet.c 46 gnunet-cadet.c
47gnunet_cadet_LDADD = \ 47gnunet_cadet_LDADD = \
48 libgnunetcadet.la \ 48 libgnunetcadet.la \
49 $(top_builddir)/src/util/libgnunetutil.la 49 $(top_builddir)/src/lib/util/libgnunetutil.la
50gnunet_cadet_LDFLAGS = \ 50gnunet_cadet_LDFLAGS = \
51 $(GN_LIBINTL) 51 $(GN_LIBINTL)
52 52
@@ -61,14 +61,14 @@ gnunet_service_cadet_SOURCES = \
61 gnunet-service-cadet_paths.c gnunet-service-cadet_paths.h \ 61 gnunet-service-cadet_paths.c gnunet-service-cadet_paths.h \
62 gnunet-service-cadet_peer.c gnunet-service-cadet_peer.h 62 gnunet-service-cadet_peer.c gnunet-service-cadet_peer.h
63gnunet_service_cadet_LDADD = \ 63gnunet_service_cadet_LDADD = \
64 $(top_builddir)/src/util/libgnunetutil.la \ 64 $(top_builddir)/src/lib/util/libgnunetutil.la \
65 $(top_builddir)/src/core/libgnunetcore.la \ 65 $(top_builddir)/src/core/libgnunetcore.la \
66 $(top_builddir)/src/dht/libgnunetdht.la \ 66 $(top_builddir)/src/dht/libgnunetdht.la \
67 $(top_builddir)/src/statistics/libgnunetstatistics.la \ 67 $(top_builddir)/src/statistics/libgnunetstatistics.la \
68 $(top_builddir)/src/transport/libgnunettransportapplication.la \ 68 $(top_builddir)/src/transport/libgnunettransportapplication.la \
69 $(top_builddir)/src/peerstore/libgnunetpeerstore.la \ 69 $(top_builddir)/src/peerstore/libgnunetpeerstore.la \
70 $(top_builddir)/src/hello/libgnunethello.la \ 70 $(top_builddir)/src/lib/hello/libgnunethello.la \
71 $(top_builddir)/src/block/libgnunetblock.la 71 $(top_builddir)/src/lib/block/libgnunetblock.la
72if LINUX 72if LINUX
73gnunet_service_cadet_LDFLAGS = -lrt \ 73gnunet_service_cadet_LDFLAGS = -lrt \
74 $(GN_LIBINTL) 74 $(GN_LIBINTL)
@@ -80,7 +80,7 @@ test_cadet_local_mq_SOURCES = \
80test_cadet_local_mq_LDADD = \ 80test_cadet_local_mq_LDADD = \
81 libgnunetcadet.la \ 81 libgnunetcadet.la \
82 $(top_builddir)/src/testing/libgnunettesting.la \ 82 $(top_builddir)/src/testing/libgnunettesting.la \
83 $(top_builddir)/src/util/libgnunetutil.la 83 $(top_builddir)/src/lib/util/libgnunetutil.la
84 84
85if ENABLE_TEST_RUN 85if ENABLE_TEST_RUN
86AM_TESTS_ENVIRONMENT=export GNUNET_PREFIX=$${GNUNET_PREFIX:-@libdir@};export PATH=$${GNUNET_PREFIX:-@prefix@}/bin:$$PATH;unset XDG_DATA_HOME;unset XDG_CONFIG_HOME; 86AM_TESTS_ENVIRONMENT=export GNUNET_PREFIX=$${GNUNET_PREFIX:-@libdir@};export PATH=$${GNUNET_PREFIX:-@prefix@}/bin:$$PATH;unset XDG_DATA_HOME;unset XDG_CONFIG_HOME;