X-Git-Url: https://git.librecmc.org/?a=blobdiff_plain;f=src%2Fpt%2FMakefile.am;h=b9a8e497c8cbad15a6c76d624793c106f8e5e8c9;hb=9a38c9af01fadf13c594126dcd2c9e74d586bfbd;hp=385bff672ea144ee5dbc0efcfd829abd54eace2c;hpb=d8cda8039015fe11760ae256c43094d046e08cac;p=oweals%2Fgnunet.git diff --git a/src/pt/Makefile.am b/src/pt/Makefile.am index 385bff672..b9a8e497c 100644 --- a/src/pt/Makefile.am +++ b/src/pt/Makefile.am @@ -10,13 +10,15 @@ endif pkgcfgdir= $(pkgdatadir)/config.d/ +libexecdir= $(pkglibdir)/libexec/ + plugindir = $(libdir)/gnunet dist_pkgcfg_DATA = \ pt.conf -bin_PROGRAMS = \ - gnunet-daemon-pt $(PTBIN) +libexec_PROGRAMS = \ + gnunet-daemon-pt gnunet_daemon_pt_SOURCES = \ gnunet-daemon-pt.c @@ -29,3 +31,72 @@ gnunet_daemon_pt_LDADD = \ $(top_builddir)/src/util/libgnunetutil.la \ $(top_builddir)/src/mesh/libgnunetmesh.la \ $(GN_LIBINTL) + +if HAVE_MHD +if LINUX + VPN_TEST = \ + test_gnunet_vpn-4_to_6 \ + test_gnunet_vpn-6_to_4 \ + test_gnunet_vpn-6_over \ + test_gnunet_vpn-4_over \ + test_gns_vpn +endif +endif + +check_PROGRAMS = $(VPN_TEST) + +if ENABLE_TEST_RUN +TESTS = $(check_PROGRAMS) +endif + +EXTRA_DIST = \ + test_gnunet_vpn.conf \ + test_gns_vpn.conf + + + +test_gns_vpn_SOURCES = \ + test_gns_vpn.c +test_gns_vpn_LDADD = -lmicrohttpd @LIBCURL@ \ + $(top_builddir)/src/namestore/libgnunetnamestore.la \ + $(top_builddir)/src/testing/libgnunettesting.la \ + $(top_builddir)/src/util/libgnunetutil.la +test_gns_vpn_CPPFLAGS = \ + @LIBCURL_CPPFLAGS@ + +test_gnunet_vpn_4_over_SOURCES = \ + test_gnunet_vpn.c +test_gnunet_vpn_4_over_LDADD = -lmicrohttpd @LIBCURL@ \ + $(top_builddir)/src/vpn/libgnunetvpn.la \ + $(top_builddir)/src/testing/libgnunettesting.la \ + $(top_builddir)/src/util/libgnunetutil.la +test_gnunet_vpn_4_over_CPPFLAGS = \ + @LIBCURL_CPPFLAGS@ + +test_gnunet_vpn_6_over_SOURCES = \ + test_gnunet_vpn.c +test_gnunet_vpn_6_over_LDADD = -lmicrohttpd @LIBCURL@ \ + $(top_builddir)/src/vpn/libgnunetvpn.la \ + $(top_builddir)/src/testing/libgnunettesting.la \ + $(top_builddir)/src/util/libgnunetutil.la +test_gnunet_vpn_6_over_CPPFLAGS = \ + @LIBCURL_CPPFLAGS@ + +test_gnunet_vpn_4_to_6_SOURCES = \ + test_gnunet_vpn.c +test_gnunet_vpn_4_to_6_LDADD = -lmicrohttpd @LIBCURL@ \ + $(top_builddir)/src/vpn/libgnunetvpn.la \ + $(top_builddir)/src/testing/libgnunettesting.la \ + $(top_builddir)/src/util/libgnunetutil.la +test_gnunet_vpn_4_to_6_CPPFLAGS = \ + @LIBCURL_CPPFLAGS@ + +test_gnunet_vpn_6_to_4_SOURCES = \ + test_gnunet_vpn.c +test_gnunet_vpn_6_to_4_LDADD = -lmicrohttpd @LIBCURL@ \ + $(top_builddir)/src/vpn/libgnunetvpn.la \ + $(top_builddir)/src/testing/libgnunettesting.la \ + $(top_builddir)/src/util/libgnunetutil.la +test_gnunet_vpn_6_to_4_CPPFLAGS = \ + @LIBCURL_CPPFLAGS@ +