5b323d489e59e0407ee759eeb32c3302bf8322aa
[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
27 gnunet_service_dht_SOURCES = \
28  gnunet-service-dht.c         
29 gnunet_service_dht_LDADD = \
30   $(top_builddir)/src/statistics/libgnunetstatistics.la \
31   $(top_builddir)/src/core/libgnunetcore.la \
32   $(top_builddir)/src/datastore/libgnunetdatastore.la \
33   $(top_builddir)/src/util/libgnunetutil.la 
34
35
36 check_PROGRAMS = \
37  test_dht_api
38
39 TESTS = $(check_PROGRAMS) # $(check_SCRIPTS)
40
41 test_dht_api_SOURCES = \
42  test_dht_api.c
43 test_dht_api_LDADD = \
44  $(top_builddir)/src/util/libgnunetutil.la \
45  $(top_builddir)/src/dht/libgnunetdht.la    
46
47 EXTRA_DIST = \
48   test_dht_api_data.conf 
49
50 #check_SCRIPTS = \
51 #  test_gnunet_peerinfo.sh