aboutsummaryrefslogtreecommitdiff
path: root/src/hostlist/Makefile.am
blob: 15510807c2b66403ff8e87dc96339236f8622c5a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
INCLUDES = -I$(top_srcdir)/src/include

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 = \
 gnunet-daemon-hostlist

gnunet_daemon_hostlist_SOURCES = \
 gnunet-daemon-hostlist.c gnunet-daemon-hostlist.h \
 hostlist-client.c hostlist-client.h \
 $(HOSTLIST_SERVER_SOURCES)

gnunet_daemon_hostlist_LDADD = \
  $(top_builddir)/src/core/libgnunetcore.la \
  $(top_builddir)/src/hello/libgnunethello.la \
  $(top_builddir)/src/peerinfo/libgnunetpeerinfo.la \
  $(top_builddir)/src/statistics/libgnunetstatistics.la \
  $(top_builddir)/src/transport/libgnunettransport.la \
  $(top_builddir)/src/util/libgnunetutil.la \
  $(GN_LIBMHD) \
  @LIBCURL@ \
  $(GN_LIBINTL)

gnunet_daemon_hostlist_CPPFLAGS = \
 @LIBCURL_CPPFLAGS@ 

check_PROGRAMS = \
 test_gnunet_daemon_hostlist \
 test_gnunet_daemon_hostlist_learning

if HAVE_MHD
TESTS = \
 test_gnunet_daemon_hostlist \
 test_gnunet_daemon_hostlist_learning
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/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/core/libgnunetcore.la \
  $(top_builddir)/src/statistics/libgnunetstatistics.la \
  $(top_builddir)/src/util/libgnunetutil.la  

EXTRA_DIST = \
  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