- debug
[oweals/gnunet.git] / src / dht / Makefile.am
index e204f09f9d265ebc92349d0d98d69e650373fbf1..e080b83d29038ff99ccf20aa328966b174284b29 100644 (file)
@@ -1,4 +1,4 @@
-INCLUDES = -I$(top_srcdir)/src/include
+AM_CPPFLAGS = -I$(top_srcdir)/src/include
 if MINGW
  WINFLAGS = -Wl,--no-undefined -Wl,--export-all-symbols -lole32 -lshell32 -liconv -lstdc++ -lcomdlg32 -lgdi32
 endif
@@ -12,10 +12,6 @@ libexecdir= $(pkglibdir)/libexec/
 pkgcfg_DATA = \
   dht.conf 
 
-if HAVE_ZLIB
- ZLIB_LNK = -lz
-endif
-
 if USE_COVERAGE
   AM_CFLAGS = --coverage -O0
   XLIB = -lgcov
@@ -32,7 +28,7 @@ libgnunetdht_la_LIBADD = \
   $(LTLIBINTL)
 libgnunetdht_la_LDFLAGS = \
   $(GN_LIB_LDFLAGS) $(WINFLAGS) \
-  -version-info 1:0:1
+  -version-info 2:0:2
 
 
 plugin_LTLIBRARIES = \
@@ -108,8 +104,9 @@ gnunet_dht_monitor_LDADD = \
 gnunet_dht_monitor_DEPENDENCIES = \
   libgnunetdht.la                            
 
-
+if HAVE_TESTING
 noinst_LIBRARIES = libgnunetdhttest.a
+endif
 
 libgnunetdhttest_a_SOURCES = \
   dht_test_lib.c dht_test_lib.h
@@ -120,6 +117,7 @@ libgnunetdhttest_a_LIBADD = \
 libgnunetdhttest_a_DEPENDENCIES = \
   libgnunetdht.la   
 
+if HAVE_TESTING
 check_PROGRAMS = \
  test_dht_api \
  test_dht_twopeer \
@@ -127,6 +125,7 @@ check_PROGRAMS = \
  test_dht_line \
  test_dht_2dtorus \
  test_dht_monitor
+endif
 
 if HAVE_EXPERIMENTAL
 # These tests still do not work as testbed does
@@ -208,7 +207,6 @@ EXTRA_DIST = \
   $(check_SCRIPTS) \
   test_dht_api_data.conf \
   test_dht_api_peer1.conf \
-  test_dht_twopeer_data.conf \
   test_dht_monitor.conf \
   test_dht_multipeer.conf \
   test_dht_2dtorus.conf \
@@ -216,8 +214,10 @@ EXTRA_DIST = \
   test_dht_tools.py.in \
   test_dht_multipeer_topology.dat
 
+if HAVE_PYTHON
 check_SCRIPTS = \
   test_dht_tools.py
+endif
 
 do_subst = $(SED) -e 's,[@]PYTHON[@],$(PYTHON),g'