X-Git-Url: https://git.librecmc.org/?a=blobdiff_plain;f=src%2Fnse%2FMakefile.am;h=a67ffeaf8e7c29240beab69c6ddd7b9383089e0c;hb=a950fe525e7be5b06cffca53c79f318d476d0b98;hp=0718a9d51cb127939bc8a18d31432db4ef86bcef;hpb=35dc1553044517244ed76f5ef6d4372c9bc945e4;p=oweals%2Fgnunet.git diff --git a/src/nse/Makefile.am b/src/nse/Makefile.am index 0718a9d51..a67ffeaf8 100644 --- a/src/nse/Makefile.am +++ b/src/nse/Makefile.am @@ -9,6 +9,13 @@ if USE_COVERAGE XLIB = -lgcov endif +pkgcfgdir= $(pkgdatadir)/config.d/ + +libexecdir= $(pkglibdir)/libexec/ + +pkgcfg_DATA = \ + nse.conf + lib_LTLIBRARIES = libgnunetnse.la @@ -22,18 +29,21 @@ libgnunetnse_la_LDFLAGS = \ -version-info 0:0:0 -bin_PROGRAMS = \ - gnunet-service-nse \ - nse-profiler +libexec_PROGRAMS = \ + gnunet-service-nse + +noinst_PROGRAMS = \ + gnunet-nse-profiler -nse_profiler_SOURCES = \ - nse-profiler.c -nse_profiler_LDADD = \ +gnunet_nse_profiler_SOURCES = \ + gnunet-nse-profiler.c +gnunet_nse_profiler_LDADD = -lm \ $(top_builddir)/src/nse/libgnunetnse.la \ $(top_builddir)/src/util/libgnunetutil.la \ - $(top_builddir)/src/testing/libgnunettesting.la + $(top_builddir)/src/statistics/libgnunetstatistics.la \ + $(top_builddir)/src/testbed/libgnunettestbed.la \ $(GN_LIBINTL) -nse_profiler_DEPENDENCIES = \ +gnunet_nse_profiler_DEPENDENCIES = \ libgnunetnse.la gnunet_service_nse_SOURCES = \ @@ -48,18 +58,24 @@ gnunet_service_nse_LDADD = \ gnunet_service_nse_DEPENDENCIES = \ libgnunetnse.la +if HAVE_BENCHMARKS + MULTIPEER_TEST = test_nse_multipeer +endif + check_PROGRAMS = \ test_nse_api \ - test_nse_multipeer + $(MULTIPEER_TEST) + if ENABLE_TEST_RUN -TESTS = $(check_PROGRAMS) $(check_SCRIPTS) +TESTS = $(check_PROGRAMS) endif test_nse_api_SOURCES = \ test_nse_api.c test_nse_api_LDADD = \ $(top_builddir)/src/nse/libgnunetnse.la \ + $(top_builddir)/src/testing/libgnunettesting.la \ $(top_builddir)/src/util/libgnunetutil.la test_nse_multipeer_SOURCES = \ @@ -67,10 +83,11 @@ test_nse_multipeer_SOURCES = \ test_nse_multipeer_LDADD = \ $(top_builddir)/src/nse/libgnunetnse.la \ $(top_builddir)/src/util/libgnunetutil.la \ - $(top_builddir)/src/testing/libgnunettesting.la + $(top_builddir)/src/testbed/libgnunettestbed.la \ + -lm EXTRA_DIST = \ test_nse.conf \ - $(check_SCRIPTS) + nse_profiler_test.conf