Added testcase to check proper working of insertion of own ID into a 2dtorus dht
[oweals/gnunet.git] / src / dht / Makefile.am
1 INCLUDES = -I$(top_srcdir)/src/include
2 if MINGW
3  WINFLAGS = -Wl,--no-undefined -Wl,--export-all-symbols -lole32 -lshell32 -liconv -lstdc++ -lcomdlg32 -lgdi32
4 endif
5
6 plugindir = $(libdir)/gnunet
7
8 if HAVE_ZLIB
9  ZLIB_LNK = -lz
10 endif
11
12 if USE_COVERAGE
13   AM_CFLAGS = --coverage -O0
14   XLIB = -lgcov
15 endif
16
17 lib_LTLIBRARIES = \
18  libgnunetdht.la 
19
20
21 libgnunetdht_la_SOURCES = \
22   dht_api.c dht.h 
23 libgnunetdht_la_LIBADD = \
24   $(top_builddir)/src/util/libgnunetutil.la \
25   $(XLIB)
26 libgnunetdht_la_LDFLAGS = \
27   $(GN_LIB_LDFLAGS) $(WINFLAGS) \
28   -version-info 0:0:0
29
30 bin_PROGRAMS = \
31  gnunet-service-dht \
32  gnunet-dht-get \
33  gnunet-dht-put
34
35 gnunet_service_dht_SOURCES = \
36  gnunet-service-dht.c gnunet-service-dht.h \
37  gnunet-service-dht_clients.c gnunet-service-dht_clients.h \
38  gnunet-service-dht_datacache.c gnunet-service-dht_datacache.h \
39  gnunet-service-dht_hello.c gnunet-service-dht_hello.h \
40  gnunet-service-dht_nse.c gnunet-service-dht_nse.h \
41  gnunet-service-dht_neighbours.c gnunet-service-dht_neighbours.h \
42  gnunet-service-dht_routing.c gnunet-service-dht_routing.h 
43 gnunet_service_dht_LDADD = \
44   $(top_builddir)/src/statistics/libgnunetstatistics.la \
45   $(top_builddir)/src/core/libgnunetcore.la \
46   $(top_builddir)/src/nse/libgnunetnse.la \
47   $(top_builddir)/src/transport/libgnunettransport.la \
48   $(top_builddir)/src/peerinfo/libgnunetpeerinfo.la \
49   $(top_builddir)/src/hello/libgnunethello.la \
50   $(top_builddir)/src/block/libgnunetblock.la \
51   $(top_builddir)/src/datacache/libgnunetdatacache.la \
52   $(top_builddir)/src/util/libgnunetutil.la \
53   -lm
54
55 gnunet_dht_get_SOURCES = \
56  gnunet-dht-get.c         
57 gnunet_dht_get_LDADD = \
58   $(top_builddir)/src/dht/libgnunetdht.la \
59   $(top_builddir)/src/core/libgnunetcore.la \
60   $(top_builddir)/src/util/libgnunetutil.la 
61 gnunet_dht_get_DEPENDENCIES = \
62   libgnunetdht.la                             
63
64 gnunet_dht_put_SOURCES = \
65  gnunet-dht-put.c         
66 gnunet_dht_put_LDADD = \
67   $(top_builddir)/src/dht/libgnunetdht.la \
68   $(top_builddir)/src/core/libgnunetcore.la \
69   $(top_builddir)/src/util/libgnunetutil.la 
70 gnunet_dht_put_DEPENDENCIES = \
71   libgnunetdht.la                             
72
73 check_PROGRAMS = \
74  test_dht_api \
75  test_dht_twopeer \
76  test_dht_twopeer_put_get \
77  test_dht_twopeer_get_put \
78  test_dht_twopeer_path_tracking \
79  test_dht_multipeer \
80  test_dht_2dtorus 
81
82 if ENABLE_TEST_RUN
83 TESTS = test_dht_api $(check_SCRIPTS) \
84  test_dht_twopeer \
85  test_dht_twopeer_put_get \
86  test_dht_twopeer_get_put \
87  test_dht_twopeer_path_tracking \
88  test_dht_multipeer  \
89  test_dht_2dtorus
90 endif
91
92 test_dht_api_SOURCES = \
93  test_dht_api.c
94 test_dht_api_LDADD = \
95  $(top_builddir)/src/util/libgnunetutil.la \
96  $(top_builddir)/src/hello/libgnunethello.la \
97  $(top_builddir)/src/dht/libgnunetdht.la
98 test_dht_api_DEPENDENCIES = \
99   libgnunetdht.la                           
100
101 test_dht_twopeer_SOURCES = \
102  test_dht_twopeer.c
103 test_dht_twopeer_LDADD = \
104  $(top_builddir)/src/util/libgnunetutil.la \
105  $(top_builddir)/src/testing/libgnunettesting.la \
106  $(top_builddir)/src/dht/libgnunetdht.la    
107 test_dht_twopeer_DEPENDENCIES = \
108   libgnunetdht.la                           
109
110 test_dht_twopeer_put_get_SOURCES = \
111  test_dht_twopeer_put_get.c
112 test_dht_twopeer_put_get_LDADD = \
113  $(top_builddir)/src/util/libgnunetutil.la \
114  $(top_builddir)/src/testing/libgnunettesting.la \
115  $(top_builddir)/src/dht/libgnunetdht.la   
116
117 test_dht_twopeer_get_put_SOURCES = \
118  test_dht_twopeer_get_put.c
119 test_dht_twopeer_get_put_LDADD = \
120  $(top_builddir)/src/util/libgnunetutil.la \
121  $(top_builddir)/src/testing/libgnunettesting.la \
122  $(top_builddir)/src/dht/libgnunetdht.la   
123
124 test_dht_twopeer_path_tracking_SOURCES = \
125  test_dht_twopeer_path_tracking.c
126 test_dht_twopeer_path_tracking_LDADD = \
127  $(top_builddir)/src/util/libgnunetutil.la \
128  $(top_builddir)/src/testing/libgnunettesting.la \
129  $(top_builddir)/src/dht/libgnunetdht.la   
130
131 test_dht_multipeer_SOURCES = \
132  test_dht_multipeer.c
133 test_dht_multipeer_LDADD = \
134  $(top_builddir)/src/util/libgnunetutil.la \
135  $(top_builddir)/src/statistics/libgnunetstatistics.la \
136  $(top_builddir)/src/testing/libgnunettesting.la \
137  $(top_builddir)/src/dht/libgnunetdht.la  
138 test_dht_multipeer_DEPENDENCIES = \
139   libgnunetdht.la                           
140
141 test_dht_2dtours_SOURCES = \
142  test_dht_2dtorus.c
143 test_dht_2dtorus_LDADD = \
144  $(top_builddir)/src/util/libgnunetutil.la \
145  $(top_builddir)/src/testing/libgnunettesting.la \
146  $(top_builddir)/src/dht/libgnunetdht.la
147 test_dht_2dtorus_DEPENDENCIES = \
148   libgnunetdht.la
149
150
151 EXTRA_DIST = \
152   $(check_SCRIPTS) \
153   test_dht_api_data.conf \
154   test_dht_api_peer1.conf \
155   test_dht_twopeer_data.conf \
156   test_dht_multipeer_data.conf \
157   test_dht_2dtorus.conf \
158   multipeer_topo.dat
159
160 check_SCRIPTS = \
161   test_dht_tools.sh