X-Git-Url: https://git.librecmc.org/?a=blobdiff_plain;f=src%2Frevocation%2FMakefile.am;h=541c7120d8685d2a34367e5e82ef496778c02c4f;hb=7c8c596991f6397ec3ca1911638acb2de721c7a7;hp=7b48c5ade692bc9d197f787f71dea757c3f138ea;hpb=87acdc596a6016fb49cf0a238592dda775a5040a;p=oweals%2Fgnunet.git diff --git a/src/revocation/Makefile.am b/src/revocation/Makefile.am index 7b48c5ade..541c7120d 100644 --- a/src/revocation/Makefile.am +++ b/src/revocation/Makefile.am @@ -1,7 +1,8 @@ +# This Makefile.am is in the public domain AM_CPPFLAGS = -I$(top_srcdir)/src/include if MINGW - WINFLAGS = -Wl,--no-undefined -Wl,--export-all-symbols + WINFLAGS = -Wl,--no-undefined -Wl,--export-all-symbols endif if USE_COVERAGE @@ -16,6 +17,17 @@ libexecdir= $(pkglibdir)/libexec/ pkgcfg_DATA = \ revocation.conf +bin_PROGRAMS = \ + gnunet-revocation + + +gnunet_revocation_SOURCES = \ + gnunet-revocation.c +gnunet_revocation_LDADD = \ + libgnunetrevocation.la \ + $(top_builddir)/src/identity/libgnunetidentity.la \ + $(top_builddir)/src/util/libgnunetutil.la \ + $(GN_LIBINTL) lib_LTLIBRARIES = libgnunetrevocation.la @@ -23,28 +35,55 @@ libgnunetrevocation_la_SOURCES = \ revocation_api.c revocation.h libgnunetrevocation_la_LIBADD = \ $(top_builddir)/src/util/libgnunetutil.la \ + $(LIBGCRYPT_LIBS) \ $(GN_LIBINTL) $(XLIB) -lgcrypt libgnunetrevocation_la_LDFLAGS = \ $(GN_LIB_LDFLAGS) $(WINFLAGS) \ -version-info 0:0:0 libexec_PROGRAMS = \ - gnunet-service-revocation + gnunet-service-revocation gnunet_service_revocation_SOURCES = \ - gnunet-service-revocation.c + gnunet-service-revocation.c gnunet_service_revocation_LDADD = \ - $(top_builddir)/src/revocation/libgnunetrevocation.la \ + libgnunetrevocation.la \ $(top_builddir)/src/core/libgnunetcore.la \ $(top_builddir)/src/set/libgnunetset.la \ $(top_builddir)/src/statistics/libgnunetstatistics.la \ $(top_builddir)/src/util/libgnunetutil.la \ -lm \ $(GN_LIBINTL) -gnunet_service_revocation_DEPENDENCIES = \ - libgnunetrevocation.la +test_revocation_SOURCES = \ + test_revocation.c +test_revocation_LDADD = \ + $(top_builddir)/src/identity/libgnunetidentity.la \ + libgnunetrevocation.la \ + $(top_builddir)/src//core/libgnunetcore.la \ + $(top_builddir)/src/util/libgnunetutil.la \ + $(top_builddir)/src/testbed/libgnunettestbed.la + +check_PROGRAMS = \ + test_revocation + +check_SCRIPTS = \ + test_local_revocation.py + +if ENABLE_TEST_RUN + 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_SCRIPTS) \ + $(check_PROGRAMS) +endif + +do_subst = $(SED) -e 's,[@]PYTHON[@],$(PYTHON),g' + +test_local_revocation.py: test_local_revocation.py.in Makefile + $(do_subst) < $(srcdir)/test_local_revocation.py.in > test_local_revocation.py + chmod +x test_local_revocation.py +EXTRA_DIST = test_revocation.conf \ + test_local_revocation.py.in -#EXTRA_DIST =