X-Git-Url: https://git.librecmc.org/?a=blobdiff_plain;f=src%2Farm%2FMakefile.am;h=7da1e2c608193c547a9890ce4ade497e331c71d0;hb=07120d4c0d2ca7d54d20c85e936763675b832c98;hp=4bfda17567b05cf9b1b2a4a79d2f1eb360be1f78;hpb=0f6f81917b4978623ff76e28dd60c20bfc17489c;p=oweals%2Fgnunet.git diff --git a/src/arm/Makefile.am b/src/arm/Makefile.am index 4bfda1756..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,12 +23,13 @@ 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 = \ gnunet-arm \ - gnunet-service-arm + gnunet-service-arm \ + mockup-service gnunet_arm_SOURCES = \ gnunet-arm.c @@ -31,21 +37,35 @@ 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 = \ + mockup-service.c + mockup_service_LDADD = \ + $(top_builddir)/src/util/libgnunetutil.la check_PROGRAMS = \ - test_arm_api + test_arm_api \ + 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 @@ -53,6 +73,19 @@ test_arm_api_LDADD = \ $(top_builddir)/src/arm/libgnunetarm.la \ $(top_builddir)/src/util/libgnunetutil.la +test_exponential_backoff_SOURCES = \ + test_exponential_backoff.c +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)