X-Git-Url: https://git.librecmc.org/?a=blobdiff_plain;f=src%2Farm%2FMakefile.am;h=7da1e2c608193c547a9890ce4ade497e331c71d0;hb=07120d4c0d2ca7d54d20c85e936763675b832c98;hp=0f6ef423701a95838796e2a4ca8954c5dc6f3e7e;hpb=4ef94875c1e50499513fd50f6a0feee479a07812;p=oweals%2Fgnunet.git diff --git a/src/arm/Makefile.am b/src/arm/Makefile.am index 0f6ef4237..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,13 +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 @@ -68,6 +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 \ - do_start_process.c + do_start_process.c \ + $(check_SCRIPTS)