X-Git-Url: https://git.librecmc.org/?a=blobdiff_plain;f=src%2Fcadet%2FMakefile.am;h=ce30ebe46a3e98bc9b7ae4cda0b1e54d0cfaebc5;hb=4b766fd267ca83a8faa4e22353d5942074d6f2b7;hp=d823b4872b7aaae3d98c9f9f059be9c1f425cfd2;hpb=bf30110e3d6bfef07963641ce6c3d53964a9e661;p=oweals%2Fgnunet.git diff --git a/src/cadet/Makefile.am b/src/cadet/Makefile.am index d823b4872..ce30ebe46 100644 --- a/src/cadet/Makefile.am +++ b/src/cadet/Makefile.am @@ -22,23 +22,25 @@ plugindir = $(libdir)/gnunet AM_CLFAGS = -g libexec_PROGRAMS = \ - gnunet-service-cadet $(EXP_LIBEXEC) + gnunet-service-cadet \ + $(EXP_LIBEXEC) bin_PROGRAMS = \ gnunet-cadet lib_LTLIBRARIES = \ - libgnunetcadet.la $(EXP_LIB) + libgnunetcadet.la \ + $(EXP_LIB) libgnunetcadet_la_SOURCES = \ - cadet_api.c cadet_common.c + cadet_api.c libgnunetcadet_la_LIBADD = \ $(top_builddir)/src/util/libgnunetutil.la \ $(XLIB) \ $(LTLIBINTL) libgnunetcadet_la_LDFLAGS = \ $(GN_LIB_LDFLAGS) $(WINFLAGS) \ - -version-info 5:0:0 + -version-info 7:0:0 gnunet_cadet_SOURCES = \ gnunet-cadet.c @@ -47,24 +49,22 @@ gnunet_cadet_LDADD = \ $(top_builddir)/src/util/libgnunetutil.la gnunet_service_cadet_SOURCES = \ - gnunet-service-cadet_tunnel.c gnunet-service-cadet_tunnel.h \ - gnunet-service-cadet_connection.c gnunet-service-cadet_connection.h \ + gnunet-service-cadet.c gnunet-service-cadet.h \ gnunet-service-cadet_channel.c gnunet-service-cadet_channel.h \ - gnunet-service-cadet_local.c gnunet-service-cadet_local.h \ - gnunet-service-cadet_peer.c gnunet-service-cadet_peer.h \ + gnunet-service-cadet_connection.c gnunet-service-cadet_connection.h \ + gnunet-service-cadet_core.c gnunet-service-cadet_core.h \ gnunet-service-cadet_dht.c gnunet-service-cadet_dht.h \ gnunet-service-cadet_hello.c gnunet-service-cadet_hello.h \ - cadet_path.c cadet_path.h \ - cadet_common.c \ - gnunet-service-cadet.c -gnunet_service_cadet_CFLAGS = $(AM_CFLAGS) + gnunet-service-cadet_tunnels.c gnunet-service-cadet_tunnels.h \ + gnunet-service-cadet_paths.c gnunet-service-cadet_paths.h \ + gnunet-service-cadet_peer.c gnunet-service-cadet_peer.h gnunet_service_cadet_LDADD = \ $(top_builddir)/src/util/libgnunetutil.la \ - $(top_builddir)/src/transport/libgnunettransport.la \ - $(top_builddir)/src/core/libgnunetcore.la \ $(top_builddir)/src/ats/libgnunetats.la \ + $(top_builddir)/src/core/libgnunetcore.la \ $(top_builddir)/src/dht/libgnunetdht.la \ $(top_builddir)/src/statistics/libgnunetstatistics.la \ + $(top_builddir)/src/transport/libgnunettransport.la \ $(top_builddir)/src/peerinfo/libgnunetpeerinfo.la \ $(top_builddir)/src/hello/libgnunethello.la \ $(top_builddir)/src/block/libgnunetblock.la @@ -74,21 +74,14 @@ endif if HAVE_TESTING - noinst_LIBRARIES = libgnunetcadettest.a $(noinst_LIB_EXP) - noinst_PROGRAMS = gnunet-cadet-profiler + noinst_LTLIBRARIES = libgnunetcadettest.la $(noinst_LIB_EXP) +# noinst_PROGRAMS = gnunet-cadet-profiler endif -libgnunetcadettest_a_SOURCES = \ - cadet_test_lib.c cadet_test_lib.h -libgnunetcadettest_a_LIBADD = \ - $(top_builddir)/src/util/libgnunetutil.la \ - $(top_builddir)/src/testbed/libgnunettestbed.la \ - libgnunetcadet.la - if HAVE_TESTING check_PROGRAMS = \ - test_cadet_single \ - test_cadet_local \ + test_cadet_local_mq \ + test_cadet_2_forward \ test_cadet_2_forward \ test_cadet_2_signal \ test_cadet_2_keepalive \ @@ -102,39 +95,44 @@ check_PROGRAMS = \ test_cadet_5_keepalive \ test_cadet_5_speed \ test_cadet_5_speed_ack \ - test_cadet_5_speed_backwards \ test_cadet_5_speed_reliable \ - test_cadet_5_speed_reliable_backwards + test_cadet_5_speed_reliable_backwards \ + test_cadet_5_speed_backwards endif + +#gnunet_cadet_profiler_SOURCES = \ +# gnunet-cadet-profiler.c +#gnunet_cadet_profiler_LDADD = $(ld_cadet_test_lib) + + +test_cadet_local_mq_SOURCES = \ + test_cadet_local_mq.c +test_cadet_local_mq_LDADD = \ + libgnunetcadet.la \ + $(top_builddir)/src/testing/libgnunettesting.la \ + $(top_builddir)/src/util/libgnunetutil.la + + +libgnunetcadettest_la_SOURCES = \ + cadet_test_lib.c cadet_test_lib.h +libgnunetcadettest_la_LIBADD = \ + $(top_builddir)/src/util/libgnunetutil.la \ + $(top_builddir)/src/testbed/libgnunettestbed.la \ + libgnunetcadet.la + ld_cadet_test_lib = \ $(top_builddir)/src/util/libgnunetutil.la \ $(top_builddir)/src/testing/libgnunettesting.la \ - libgnunetcadettest.a \ libgnunetcadet.la \ + libgnunetcadettest.la \ $(top_builddir)/src/testbed/libgnunettestbed.la \ $(top_builddir)/src/statistics/libgnunetstatistics.la - dep_cadet_test_lib = \ libgnunetcadet.la \ - libgnunetcadettest.a \ + libgnunetcadettest.la \ $(top_builddir)/src/statistics/libgnunetstatistics.la - -gnunet_cadet_profiler_SOURCES = \ - gnunet-cadet-profiler.c -gnunet_cadet_profiler_LDADD = $(ld_cadet_test_lib) - - -test_cadet_single_SOURCES = \ - test_cadet_single.c -test_cadet_single_LDADD = $(ld_cadet_test_lib) - -test_cadet_local_SOURCES = \ - test_cadet_local.c -test_cadet_local_LDADD = $(ld_cadet_test_lib) - - test_cadet_2_forward_SOURCES = \ test_cadet.c test_cadet_2_forward_LDADD = $(ld_cadet_test_lib) @@ -167,7 +165,6 @@ test_cadet_2_speed_reliable_backwards_SOURCES = \ test_cadet.c test_cadet_2_speed_reliable_backwards_LDADD = $(ld_cadet_test_lib) - test_cadet_5_forward_SOURCES = \ test_cadet.c test_cadet_5_forward_LDADD = $(ld_cadet_test_lib) @@ -202,7 +199,7 @@ test_cadet_5_speed_reliable_backwards_LDADD = $(ld_cadet_test_lib) if ENABLE_TEST_RUN -AM_TESTS_ENVIRONMENT=export GNUNET_PREFIX=$${GNUNET_PREFIX:-@libdir@};export PATH=$${GNUNET_PREFIX:-@prefix@}/bin:$$PATH; +AM_TESTS_ENVIRONMENT=export GNUNET_PREFIX=$${GNUNET_PREFIX:-@libdir@};export PATH=$${GNUNET_PREFIX:-@prefix@}/bin:$$PATH;unset XDG_DATA_HOME;unset XDG_CONFIG_HOME; TESTS = \ $(check_PROGRAMS) endif