8ae5c4199b5e68993e9f433a13f8d6668e286982
[oweals/gnunet.git] / src / dht / Makefile.am
1 INCLUDES = -I$(top_srcdir)/src/include
2
3 if MINGW
4  WINFLAGS = -Wl,--no-undefined -Wl,--export-all-symbols -lole32 -lshell32 -liconv -lstdc++ -lcomdlg32 -lgdi32
5 endif
6
7 if USE_COVERAGE
8   AM_CFLAGS = --coverage -O0
9   XLIB = -lgcov
10 endif
11
12 lib_LTLIBRARIES = libgnunetdht.la
13
14 libgnunetdht_la_SOURCES = \
15   dht_api.c dht.h
16 libgnunetdht_la_LIBADD = \
17   $(top_builddir)/src/util/libgnunetutil.la \
18   $(XLIB)
19 libgnunetdht_la_LDFLAGS = \
20   $(GN_LIB_LDFLAGS) $(WINFLAGS) \
21   -version-info 0:0:0
22
23
24 bin_PROGRAMS = \
25  gnunet-service-dht \
26  gnunet-dht-get \
27  gnunet-dht-put
28
29 gnunet_service_dht_SOURCES = \
30  gnunet-service-dht.c         
31 gnunet_service_dht_LDADD = \
32   $(top_builddir)/src/statistics/libgnunetstatistics.la \
33   $(top_builddir)/src/core/libgnunetcore.la \
34   $(top_builddir)/src/datacache/libgnunetdatacache.la \
35   $(top_builddir)/src/util/libgnunetutil.la 
36
37 gnunet_dht_get_SOURCES = \
38  gnunet-dht-get.c         
39 gnunet_dht_get_LDADD = \
40   $(top_builddir)/src/dht/libgnunetdht.la \
41   $(top_builddir)/src/core/libgnunetcore.la \
42   $(top_builddir)/src/util/libgnunetutil.la 
43
44 gnunet_dht_put_SOURCES = \
45  gnunet-dht-put.c         
46 gnunet_dht_put_LDADD = \
47   $(top_builddir)/src/dht/libgnunetdht.la \
48   $(top_builddir)/src/core/libgnunetcore.la \
49   $(top_builddir)/src/util/libgnunetutil.la 
50
51 check_PROGRAMS = \
52  test_dht_api
53
54 TESTS = $(check_PROGRAMS) # $(check_SCRIPTS)
55
56 test_dht_api_SOURCES = \
57  test_dht_api.c
58 test_dht_api_LDADD = \
59  $(top_builddir)/src/util/libgnunetutil.la \
60  $(top_builddir)/src/dht/libgnunetdht.la    
61
62 EXTRA_DIST = \
63   test_dht_api_data.conf 
64
65 #check_SCRIPTS = \
66 #  test_gnunet_peerinfo.sh