doxygen fixes
[oweals/gnunet.git] / src / fs / Makefile.am
1
2 INCLUDES = -I$(top_srcdir)/src/include
3
4 if MINGW
5  WINFLAGS = -Wl,--no-undefined -Wl,--export-all-symbols 
6 endif
7
8 if USE_COVERAGE
9   AM_CFLAGS = --coverage -O0
10   XLIB = -lgcov
11 endif
12
13
14 lib_LTLIBRARIES = libgnunetfs.la
15
16 noinst_LIBRARIES = libgnunetfstest.a
17
18 libgnunetfs_la_SOURCES = \
19   fs.c fs.h \
20   fs_collection.c \
21   fs_directory.c \
22   fs_download.c \
23   fs_file_information.c \
24   fs_getopt.c \
25   fs_list_indexed.c \
26   fs_publish.c \
27   fs_namespace.c \
28   fs_search.c \
29   fs_tree.c fs_tree.h \
30   fs_unindex.c \
31   fs_uri.c 
32
33 libgnunetfs_la_LIBADD = \
34   $(top_builddir)/src/datastore/libgnunetdatastore.la \
35   $(top_builddir)/src/util/libgnunetutil.la \
36   -lextractor \
37   $(GN_LIBINTL) $(XLIB)
38
39 libgnunetfs_la_LDFLAGS = \
40   $(GN_LIB_LDFLAGS)  $(WINFLAGS) \
41   -version-info 0:0:0
42
43
44 libgnunetfstest_a_SOURCES = \
45   fs_test_lib.c fs_test_lib.h
46
47 libgnunetfstest_a_LIBADD = \
48   $(top_builddir)/src/testing/libgnunettesting.la 
49
50 bin_PROGRAMS = \
51   gnunet-directory \
52   gnunet-download \
53   gnunet-publish \
54   gnunet-pseudonym \
55   gnunet-search \
56   gnunet-service-fs \
57   gnunet-unindex 
58
59 gnunet_directory_SOURCES = \
60  gnunet-directory.c
61 gnunet_directory_LDADD = \
62   $(top_builddir)/src/fs/libgnunetfs.la \
63   $(top_builddir)/src/util/libgnunetutil.la \
64   $(GN_LIBINTL)
65
66 gnunet_download_SOURCES =  \
67  gnunet-download.c         
68 gnunet_download_LDADD =  \
69  $(top_builddir)/src/fs/libgnunetfs.la \
70  $(top_builddir)/src/util/libgnunetutil.la \
71  $(GN_LIBINTL)
72
73 gnunet_publish_SOURCES =  \
74  gnunet-publish.c         
75 gnunet_publish_LDADD =  \
76  $(top_builddir)/src/fs/libgnunetfs.la \
77  $(top_builddir)/src/util/libgnunetutil.la \
78  $(GN_LIBINTL)
79
80 gnunet_pseudonym_SOURCES = \
81  gnunet-pseudonym.c
82 gnunet_pseudonym_LDADD = \
83   $(top_builddir)/src/fs/libgnunetfs.la \
84   $(top_builddir)/src/util/libgnunetutil.la \
85   -lextractor \
86   $(GN_LIBINTL)
87
88 gnunet_search_SOURCES = \
89  gnunet-search.c         
90 gnunet_search_LDADD = \
91   $(top_builddir)/src/fs/libgnunetfs.la \
92   $(top_builddir)/src/util/libgnunetutil.la \
93   $(GN_LIBINTL)
94
95 gnunet_service_fs_SOURCES =  \
96  gnunet-service-fs.c \
97  gnunet-service-fs_drq.c gnunet-service-fs_drq.h \
98  gnunet-service-fs_indexing.c gnunet-service-fs_indexing.h 
99 gnunet_service_fs_LDADD =  \
100  $(top_builddir)/src/fs/libgnunetfs.la \
101  $(top_builddir)/src/datastore/libgnunetdatastore.la \
102  $(top_builddir)/src/statistics/libgnunetstatistics.la \
103  $(top_builddir)/src/core/libgnunetcore.la \
104  $(top_builddir)/src/util/libgnunetutil.la \
105  $(GN_LIBINTL)
106
107 gnunet_unindex_SOURCES = \
108  gnunet-unindex.c         
109 gnunet_unindex_LDADD = \
110   $(top_builddir)/src/fs/libgnunetfs.la \
111   $(top_builddir)/src/util/libgnunetutil.la \
112   $(GN_LIBINTL)
113
114
115
116
117 check_PROGRAMS = \
118  test_fs_collection \
119  test_fs_directory \
120  test_fs_download \
121  test_fs_file_information \
122  test_fs_getopt \
123  test_fs_list_indexed \
124  test_fs_namespace \
125  test_fs_publish \
126  test_fs_search \
127  test_fs_start_stop \
128  test_fs_test_lib \
129  test_fs_unindex \
130  test_fs_uri \
131  test_gnunet_service_fs_p2p
132
133 if HAVE_PYTHON_PEXPECT
134 check_SCRIPTS = \
135  test_gnunet_fs_psd.py \
136  test_gnunet_fs_rec.py \
137  test_gnunet_fs_ns.py \
138  test_gnunet_fs_idx.py
139 endif
140
141 TESTS = $(check_SCRIPTS) \
142  test_fs_directory \
143  test_fs_download \
144  test_fs_file_information \
145  test_fs_list_indexed \
146  test_fs_namespace \
147  test_fs_publish \
148  test_fs_search \
149  test_fs_start_stop \
150  test_fs_unindex \
151  test_fs_uri \
152  test_fs_test_lib \
153  test_gnunet_service_fs_p2p
154 # $(check_PROGRAMS)
155
156
157 test_fs_collection_SOURCES = \
158  test_fs_collection.c
159 test_fs_collection_LDADD = \
160   $(top_builddir)/src/fs/libgnunetfs.la  \
161   $(top_builddir)/src/util/libgnunetutil.la  
162
163 test_fs_directory_SOURCES = \
164  test_fs_directory.c
165 test_fs_directory_LDADD = \
166   $(top_builddir)/src/fs/libgnunetfs.la  \
167   $(top_builddir)/src/util/libgnunetutil.la  
168
169 test_fs_download_SOURCES = \
170  test_fs_download.c
171 test_fs_download_LDADD = \
172   $(top_builddir)/src/fs/libgnunetfs.la  \
173   $(top_builddir)/src/arm/libgnunetarm.la  \
174   $(top_builddir)/src/util/libgnunetutil.la  
175
176 test_fs_file_information_SOURCES = \
177  test_fs_file_information.c
178 test_fs_file_information_LDADD = \
179   $(top_builddir)/src/fs/libgnunetfs.la  \
180   $(top_builddir)/src/util/libgnunetutil.la  
181
182 test_fs_getopt_SOURCES = \
183  test_fs_getopt.c
184 test_fs_getopt_LDADD = \
185   $(top_builddir)/src/fs/libgnunetfs.la  \
186   $(top_builddir)/src/util/libgnunetutil.la  
187
188 test_fs_list_indexed_SOURCES = \
189  test_fs_list_indexed.c
190 test_fs_list_indexed_LDADD = \
191   $(top_builddir)/src/fs/libgnunetfs.la  \
192   $(top_builddir)/src/arm/libgnunetarm.la  \
193   $(top_builddir)/src/util/libgnunetutil.la  
194
195 test_fs_namespace_SOURCES = \
196  test_fs_namespace.c
197 test_fs_namespace_LDADD = \
198   $(top_builddir)/src/fs/libgnunetfs.la  \
199   $(top_builddir)/src/arm/libgnunetarm.la  \
200   $(top_builddir)/src/util/libgnunetutil.la  
201
202 test_fs_publish_SOURCES = \
203  test_fs_publish.c
204 test_fs_publish_LDADD = \
205   $(top_builddir)/src/fs/libgnunetfs.la  \
206   $(top_builddir)/src/arm/libgnunetarm.la  \
207   $(top_builddir)/src/util/libgnunetutil.la  
208
209 test_fs_search_SOURCES = \
210  test_fs_search.c
211 test_fs_search_LDADD = $(top_builddir)/src/fs/libgnunetfs.la    \
212   $(top_builddir)/src/arm/libgnunetarm.la                       \
213   $(top_builddir)/src/util/libgnunetutil.la
214
215 test_fs_start_stop_SOURCES = \
216  test_fs_start_stop.c
217 test_fs_start_stop_LDADD = \
218   $(top_builddir)/src/fs/libgnunetfs.la  \
219   $(top_builddir)/src/arm/libgnunetarm.la  \
220   $(top_builddir)/src/util/libgnunetutil.la  
221
222 test_fs_unindex_SOURCES = \
223  test_fs_unindex.c
224 test_fs_unindex_LDADD = \
225   $(top_builddir)/src/fs/libgnunetfs.la  \
226   $(top_builddir)/src/arm/libgnunetarm.la  \
227   $(top_builddir)/src/util/libgnunetutil.la  
228
229 test_fs_uri_SOURCES = \
230  test_fs_uri.c
231 test_fs_uri_LDADD = \
232   $(top_builddir)/src/fs/libgnunetfs.la  \
233   $(top_builddir)/src/util/libgnunetutil.la  
234
235 test_fs_test_lib_SOURCES = \
236  test_fs_test_lib.c
237 test_fs_test_lib_LDADD = \
238   $(top_builddir)/src/fs/libgnunetfstest.a \
239   $(top_builddir)/src/testing/libgnunettesting.la \
240   $(top_builddir)/src/fs/libgnunetfs.la  \
241   $(top_builddir)/src/util/libgnunetutil.la  
242
243 test_gnunet_service_fs_p2p_SOURCES = \
244  test_gnunet_service_fs_p2p.c
245 test_gnunet_service_fs_p2p_LDADD = \
246   $(top_builddir)/src/fs/libgnunetfstest.a \
247   $(top_builddir)/src/testing/libgnunettesting.la \
248   $(top_builddir)/src/fs/libgnunetfs.la  \
249   $(top_builddir)/src/util/libgnunetutil.la  
250
251
252 EXTRA_DIST = \
253   fs_test_lib_data.conf \
254   test_fs_data.conf \
255   test_fs_collection_data.conf \
256   test_fs_download_data.conf \
257   test_fs_file_information_data.conf \
258   fs_test_lib_data.conf \
259   test_fs_list_indexed_data.conf \
260   test_fs_namespace_data.conf \
261   test_fs_publish_data.conf \
262   test_fs_search_data.conf \
263   test_fs_unindex_data.conf \
264   test_fs_uri_data.conf \
265   test_gnunet_fs_idx_data.conf \
266   test_gnunet_fs_ns_data.conf \
267   test_gnunet_fs_psd_data.conf \
268   test_gnunet_fs_rec_data.conf \
269   test_gnunet_fs_rec_data.tgz \
270   $(check_SCRIPTS)