towards reviving priorities in core API, this time with enum to make classes clearer
[oweals/gnunet.git] / src / hostlist / Makefile.am
index c4cc55f41a2ca9edb5e2d57af687e84185fb578b..b1c05596bbb2381f71a7581b02916918772ff0cd 100644 (file)
@@ -1,17 +1,30 @@
-INCLUDES = -I$(top_srcdir)/src/include
+AM_CPPFLAGS = -I$(top_srcdir)/src/include
+
+pkgcfgdir= $(pkgdatadir)/config.d/
+
+libexecdir= $(pkglibdir)/libexec/
+
+dist_pkgcfg_DATA = \
+  hostlist.conf
 
 if USE_COVERAGE
   AM_CFLAGS = --coverage -O0
 endif
 
+if HAVE_MHD
+ HOSTLIST_SERVER_SOURCES =  hostlist-server.c hostlist-server.h
+ GN_LIBMHD = -lmicrohttpd
+endif
 
-bin_PROGRAMS = \
+if HAVE_LIBGNURL
+libexec_PROGRAMS = \
  gnunet-daemon-hostlist
+endif
 
 gnunet_daemon_hostlist_SOURCES = \
  gnunet-daemon-hostlist.c gnunet-daemon-hostlist.h \
  hostlist-client.c hostlist-client.h \
- hostlist-server.c hostlist-server.h 
+ $(HOSTLIST_SERVER_SOURCES)
 
 gnunet_daemon_hostlist_LDADD = \
   $(top_builddir)/src/core/libgnunetcore.la \
@@ -20,41 +33,56 @@ gnunet_daemon_hostlist_LDADD = \
   $(top_builddir)/src/statistics/libgnunetstatistics.la \
   $(top_builddir)/src/transport/libgnunettransport.la \
   $(top_builddir)/src/util/libgnunetutil.la \
-  -lmicrohttpd \
-  @LIBCURL@ \
+  $(GN_LIBMHD) \
+  @LIBGNURL@  \
   $(GN_LIBINTL)
 
 gnunet_daemon_hostlist_CPPFLAGS = \
- @LIBCURL_CPPFLAGS@ 
+ @LIBGNURL_CPPFLAGS@  $(AM_CPPFLAGS)
 
+if HAVE_LIBGNURL
 check_PROGRAMS = \
  test_gnunet_daemon_hostlist \
+ test_gnunet_daemon_hostlist_reconnect \
  test_gnunet_daemon_hostlist_learning
 
-
-TESTS = test_gnunet_daemon_hostlist \
+if HAVE_MHD
+if ENABLE_TEST_RUN
+TESTS_ENVIRONMENT=export GNUNET_PREFIX=@libdir@;export PATH=@prefix@/bin:$$PATH;
+TESTS = \
+ test_gnunet_daemon_hostlist \
+ test_gnunet_daemon_hostlist_reconnect \
  test_gnunet_daemon_hostlist_learning
+endif
+endif
+endif
 
 test_gnunet_daemon_hostlist_SOURCES = \
  test_gnunet_daemon_hostlist.c
 test_gnunet_daemon_hostlist_LDADD = \
   $(top_builddir)/src/transport/libgnunettransport.la \
-  $(top_builddir)/src/arm/libgnunetarm.la \
-  $(top_builddir)/src/util/libgnunetutil.la  
+  $(top_builddir)/src/util/libgnunetutil.la
+
+test_gnunet_daemon_hostlist_reconnect_SOURCES = \
+ test_gnunet_daemon_hostlist_reconnect.c
+test_gnunet_daemon_hostlist_reconnect_LDADD = \
+  $(top_builddir)/src/transport/libgnunettransport.la \
+  $(top_builddir)/src/util/libgnunetutil.la
 
 test_gnunet_daemon_hostlist_learning_SOURCES = \
  test_gnunet_daemon_hostlist_learning.c
 test_gnunet_daemon_hostlist_learning_LDADD = \
   $(top_builddir)/src/transport/libgnunettransport.la \
-  $(top_builddir)/src/arm/libgnunetarm.la \
   $(top_builddir)/src/core/libgnunetcore.la \
-  $(top_builddir)/src/util/libgnunetutil.la  
+  $(top_builddir)/src/statistics/libgnunetstatistics.la \
+  $(top_builddir)/src/util/libgnunetutil.la
 
 EXTRA_DIST = \
+  test_hostlist_defaults.conf \
   test_gnunet_daemon_hostlist_data.conf \
   test_gnunet_daemon_hostlist_peer1.conf \
   test_gnunet_daemon_hostlist_peer2.conf \
-  learning_data.conf \
-  learning_peer1.conf \
-  learning_peer2.conf
-
+  test_learning_adv_peer.conf \
+  test_learning_learn_peer.conf \
+  test_learning_learn_peer2.conf \
+  learning_data.conf