X-Git-Url: https://git.librecmc.org/?a=blobdiff_plain;f=src%2Farm%2FMakefile.am;h=7da1e2c608193c547a9890ce4ade497e331c71d0;hb=07120d4c0d2ca7d54d20c85e936763675b832c98;hp=8cd9cc0dbad0bfb1e3a761c98ca0000a26371ef6;hpb=9b7ad6f345208cae41ec4ebf957528fc43406a84;p=oweals%2Fgnunet.git diff --git a/src/arm/Makefile.am b/src/arm/Makefile.am index 8cd9cc0db..7da1e2c60 100644 --- a/src/arm/Makefile.am +++ b/src/arm/Makefile.am @@ -1,5 +1,10 @@ INCLUDES = -I$(top_srcdir)/src/include +pkgcfgdir= $(pkgdatadir)/config.d/ + +pkgcfg_DATA = \ + arm.conf + if MINGW WINFLAGS = -Wl,--no-undefined -Wl,--export-all-symbols endif @@ -18,7 +23,7 @@ libgnunetarm_la_LIBADD = \ $(GN_LIBINTL) $(XLIB) libgnunetarm_la_LDFLAGS = \ $(GN_LIB_LDFLAGS) $(WINFLAGS) \ - -version-info 0:0:0 + -version-info 1:1:0 bin_PROGRAMS = \ @@ -32,12 +37,16 @@ gnunet_arm_LDADD = \ $(top_builddir)/src/arm/libgnunetarm.la \ $(top_builddir)/src/util/libgnunetutil.la \ $(GN_LIBINTL) +gnunet_arm_DEPENDENCIES = \ + libgnunetarm.la gnunet_service_arm_SOURCES = \ - gnunet-service-arm.c + gnunet-service-arm.c gnunet_service_arm_LDADD = \ $(top_builddir)/src/util/libgnunetutil.la \ $(GN_LIBINTL) +gnunet_service_arm_DEPENDENCIES = \ + libgnunetarm.la mockup_service_SOURCES = \ @@ -48,12 +57,15 @@ mockup_service_SOURCES = \ check_PROGRAMS = \ test_arm_api \ - test_exponential_backoff + test_exponential_backoff \ + test_gnunet_service_manager check_SCRIPTS = \ test_gnunet_arm.sh -TESTS = $(check_PROGRAMS) $(check_SCRIPTS) +if ENABLE_TEST_RUN +TESTS = $(check_PROGRAMS) $(check_SCRIPTS) +endif test_arm_api_SOURCES = \ test_arm_api.c @@ -67,5 +79,13 @@ test_exponential_backoff_LDADD = \ $(top_builddir)/src/arm/libgnunetarm.la \ $(top_builddir)/src/util/libgnunetutil.la +test_gnunet_service_manager_SOURCES = \ + test_gnunet_service_manager.c + test_gnunet_service_manager_LDADD = \ + $(top_builddir)/src/arm/libgnunetarm.la \ + $(top_builddir)/src/util/libgnunetutil.la + EXTRA_DIST = \ - test_arm_api_data.conf + test_arm_api_data.conf \ + do_start_process.c \ + $(check_SCRIPTS)