adding extended proxy support for http(s) client
[oweals/gnunet.git] / src / datastore / Makefile.am
1 AM_CPPFLAGS = -I$(top_srcdir)/src/include
2
3 plugindir = $(libdir)/gnunet
4
5 pkgcfgdir= $(pkgdatadir)/config.d/
6
7 libexecdir= $(pkglibdir)/libexec/
8
9 pkgcfg_DATA = \
10   datastore.conf
11
12 if MINGW
13   WINFLAGS = -Wl,--no-undefined -Wl,--export-all-symbols
14 endif
15
16 if USE_COVERAGE
17   AM_CFLAGS = --coverage -O0
18   XLIBS = -lgcov
19 endif
20
21
22 lib_LTLIBRARIES = \
23   libgnunetdatastore.la
24
25 libgnunetdatastore_la_SOURCES = \
26   datastore_api.c datastore.h 
27 libgnunetdatastore_la_LIBADD = \
28   $(top_builddir)/src/statistics/libgnunetstatistics.la \
29   $(top_builddir)/src/util/libgnunetutil.la \
30   $(GN_LIBINTL) 
31 libgnunetdatastore_la_LDFLAGS = \
32   $(GN_LIB_LDFLAGS) $(WINFLAGS) \
33   -version-info 1:0:0
34
35 bin_PROGRAMS = \
36  gnunet-datastore
37
38 libexec_PROGRAMS = \
39  gnunet-service-datastore
40
41 gnunet_service_datastore_SOURCES = \
42  gnunet-service-datastore.c 
43 gnunet_service_datastore_LDADD = \
44   $(top_builddir)/src/statistics/libgnunetstatistics.la \
45   $(top_builddir)/src/util/libgnunetutil.la \
46   $(GN_LIBINTL)
47
48 gnunet_datastore_SOURCES = \
49  gnunet-datastore.c 
50 gnunet_datastore_LDADD = \
51   $(top_builddir)/src/datastore/libgnunetdatastore.la \
52   $(top_builddir)/src/util/libgnunetutil.la \
53   $(GN_LIBINTL)
54 gnunet_datastore_DEPENDENCIES = \
55   libgnunetdatastore.la
56
57
58 if HAVE_MYSQL
59  MYSQL_PLUGIN = libgnunet_plugin_datastore_mysql.la
60 if HAVE_TESTING
61 if HAVE_BENCHMARKS
62   MYSQL_BENCHMARKS = \
63    perf_datastore_api_mysql \
64    perf_plugin_datastore_mysql
65 endif
66  MYSQL_TESTS = \
67   test_datastore_api_mysql \
68   test_datastore_api_management_mysql \
69   test_plugin_datastore_mysql \
70   $(MYSQL_BENCHMARKS)
71 endif
72 endif
73 if HAVE_SQLITE
74  SQLITE_PLUGIN = libgnunet_plugin_datastore_sqlite.la
75 if HAVE_TESTING
76 if HAVE_BENCHMARKS
77   SQLITE_BENCHMARKS = \
78    perf_datastore_api_sqlite \
79    perf_plugin_datastore_sqlite
80 endif
81  SQLITE_TESTS = \
82   test_datastore_api_sqlite \
83   test_datastore_api_management_sqlite \
84   test_plugin_datastore_sqlite \
85   $(SQLITE_BENCHMARKS)
86 endif
87 endif
88 if HAVE_POSTGRES
89  POSTGRES_PLUGIN = libgnunet_plugin_datastore_postgres.la
90 if HAVE_TESTING
91 if HAVE_BENCHMARKS
92   POSTGRES_BENCHMARKS = \
93    perf_datastore_api_postgres \
94    perf_plugin_datastore_postgres
95 endif
96  POSTGRES_TESTS = \
97   test_datastore_api_postgres \
98   test_datastore_api_management_postgres \
99   test_plugin_datastore_postgres \
100   $(POSTGRES_BENCHMARKS)
101 endif
102 endif
103
104 plugin_LTLIBRARIES = \
105   $(SQLITE_PLUGIN) \
106   $(MYSQL_PLUGIN) \
107   $(POSTGRES_PLUGIN) \
108   libgnunet_plugin_datastore_heap.la \
109   libgnunet_plugin_datastore_template.la 
110
111
112 libgnunet_plugin_datastore_sqlite_la_SOURCES = \
113   plugin_datastore_sqlite.c
114 libgnunet_plugin_datastore_sqlite_la_LIBADD = \
115   $(top_builddir)/src/statistics/libgnunetstatistics.la \
116   $(top_builddir)/src/util/libgnunetutil.la $(XLIBS) -lsqlite3 \
117   $(LTLIBINTL)
118 libgnunet_plugin_datastore_sqlite_la_LDFLAGS = \
119  $(GN_PLUGIN_LDFLAGS)
120
121
122 libgnunet_plugin_datastore_heap_la_SOURCES = \
123   plugin_datastore_heap.c
124 libgnunet_plugin_datastore_heap_la_LIBADD = \
125   $(top_builddir)/src/util/libgnunetutil.la $(XLIBS) \
126   $(LTLIBINTL)
127 libgnunet_plugin_datastore_heap_la_LDFLAGS = \
128  $(GN_PLUGIN_LDFLAGS)
129
130
131 libgnunet_plugin_datastore_mysql_la_SOURCES = \
132   plugin_datastore_mysql.c
133 libgnunet_plugin_datastore_mysql_la_LIBADD = \
134   $(top_builddir)/src/mysql/libgnunetmysql.la \
135   $(top_builddir)/src/statistics/libgnunetstatistics.la \
136   $(top_builddir)/src/util/libgnunetutil.la $(XLIBS) $(Z_LIBS) -lmysqlclient
137 libgnunet_plugin_datastore_mysql_la_LDFLAGS = \
138  $(GN_PLUGIN_LDFLAGS) $(MYSQL_LDFLAGS) -lmysqlclient
139 libgnunet_plugin_datastore_mysql_la_CPPFLAGS = \
140  $(MYSQL_CPPFLAGS) $(AM_CPPFLAGS)
141
142 libgnunet_plugin_datastore_postgres_la_SOURCES = \
143   plugin_datastore_postgres.c
144 libgnunet_plugin_datastore_postgres_la_LIBADD = \
145   $(top_builddir)/src/statistics/libgnunetstatistics.la \
146   $(top_builddir)/src/postgres/libgnunetpostgres.la \
147   $(top_builddir)/src/util/libgnunetutil.la $(XLIBS) -lpq
148 libgnunet_plugin_datastore_postgres_la_LDFLAGS = \
149  $(GN_PLUGIN_LDFLAGS) $(POSTGRES_LDFLAGS) -lpq
150 libgnunet_plugin_datastore_postgres_la_CPPFLAGS = \
151  $(POSTGRES_CPPFLAGS) $(AM_CPPFLAGS)
152
153
154 libgnunet_plugin_datastore_template_la_SOURCES = \
155   plugin_datastore_template.c
156 libgnunet_plugin_datastore_template_la_LIBADD = \
157   $(top_builddir)/src/util/libgnunetutil.la $(XLIBS) \
158   $(LTLIBINTL)
159 libgnunet_plugin_datastore_template_la_LDFLAGS = \
160  $(GN_PLUGIN_LDFLAGS)
161
162 check_PROGRAMS = \
163   test_datastore_api_heap \
164   test_datastore_api_management_heap \
165   perf_datastore_api_heap \
166   perf_plugin_datastore_heap \
167   test_plugin_datastore_heap \
168   $(SQLITE_TESTS) \
169   $(MYSQL_TESTS) \
170   $(POSTGRES_TESTS)
171
172 if ENABLE_TEST_RUN
173 AM_TESTS_ENVIRONMENT=export GNUNET_PREFIX=$${GNUNET_PREFIX:-@libdir@};export PATH=$${GNUNET_PREFIX:-@prefix@}/bin:$$PATH;
174 TESTS = $(check_PROGRAMS)
175 endif
176
177 test_datastore_api_heap_SOURCES = \
178  test_datastore_api.c
179 test_datastore_api_heap_LDADD = \
180  $(top_builddir)/src/testing/libgnunettesting.la \
181  $(top_builddir)/src/datastore/libgnunetdatastore.la \
182  $(top_builddir)/src/util/libgnunetutil.la  
183
184 test_datastore_api_management_heap_SOURCES = \
185  test_datastore_api_management.c
186 test_datastore_api_management_heap_LDADD = \
187  $(top_builddir)/src/testing/libgnunettesting.la \
188  $(top_builddir)/src/datastore/libgnunetdatastore.la \
189  $(top_builddir)/src/util/libgnunetutil.la  
190
191 perf_datastore_api_heap_SOURCES = \
192  perf_datastore_api.c
193 perf_datastore_api_heap_LDADD = \
194  $(top_builddir)/src/testing/libgnunettesting.la \
195  $(top_builddir)/src/datastore/libgnunetdatastore.la \
196  $(top_builddir)/src/util/libgnunetutil.la  
197
198 perf_plugin_datastore_heap_SOURCES = \
199  perf_plugin_datastore.c
200 perf_plugin_datastore_heap_LDADD = \
201  $(top_builddir)/src/testing/libgnunettesting.la \
202  $(top_builddir)/src/util/libgnunetutil.la  
203
204 test_plugin_datastore_heap_SOURCES = \
205  test_plugin_datastore.c
206 test_plugin_datastore_heap_LDADD = \
207  $(top_builddir)/src/testing/libgnunettesting.la \
208  $(top_builddir)/src/util/libgnunetutil.la  
209
210
211 test_datastore_api_sqlite_SOURCES = \
212  test_datastore_api.c
213 test_datastore_api_sqlite_LDADD = \
214  $(top_builddir)/src/testing/libgnunettesting.la \
215  $(top_builddir)/src/datastore/libgnunetdatastore.la \
216  $(top_builddir)/src/util/libgnunetutil.la  
217
218 test_datastore_api_management_sqlite_SOURCES = \
219  test_datastore_api_management.c
220 test_datastore_api_management_sqlite_LDADD = \
221  $(top_builddir)/src/testing/libgnunettesting.la \
222  $(top_builddir)/src/datastore/libgnunetdatastore.la \
223  $(top_builddir)/src/util/libgnunetutil.la  
224
225 perf_datastore_api_sqlite_SOURCES = \
226  perf_datastore_api.c
227 perf_datastore_api_sqlite_LDADD = \
228  $(top_builddir)/src/testing/libgnunettesting.la \
229  $(top_builddir)/src/datastore/libgnunetdatastore.la \
230  $(top_builddir)/src/util/libgnunetutil.la  
231
232 perf_plugin_datastore_sqlite_SOURCES = \
233  perf_plugin_datastore.c
234 perf_plugin_datastore_sqlite_LDADD = \
235  $(top_builddir)/src/testing/libgnunettesting.la \
236  $(top_builddir)/src/util/libgnunetutil.la  
237
238 test_plugin_datastore_sqlite_SOURCES = \
239  test_plugin_datastore.c
240 test_plugin_datastore_sqlite_LDADD = \
241  $(top_builddir)/src/testing/libgnunettesting.la \
242  $(top_builddir)/src/util/libgnunetutil.la  
243
244
245 test_datastore_api_mysql_SOURCES = \
246  test_datastore_api.c
247 test_datastore_api_mysql_LDADD = \
248  $(top_builddir)/src/testing/libgnunettesting.la \
249  $(top_builddir)/src/datastore/libgnunetdatastore.la \
250  $(top_builddir)/src/util/libgnunetutil.la  
251
252 test_datastore_api_management_mysql_SOURCES = \
253  test_datastore_api_management.c
254 test_datastore_api_management_mysql_LDADD = \
255  $(top_builddir)/src/testing/libgnunettesting.la \
256  $(top_builddir)/src/datastore/libgnunetdatastore.la \
257  $(top_builddir)/src/util/libgnunetutil.la  
258
259 perf_datastore_api_mysql_SOURCES = \
260  perf_datastore_api.c
261 perf_datastore_api_mysql_LDADD = \
262  $(top_builddir)/src/testing/libgnunettesting.la \
263  $(top_builddir)/src/datastore/libgnunetdatastore.la \
264  $(top_builddir)/src/util/libgnunetutil.la  
265
266 test_plugin_datastore_mysql_SOURCES = \
267  test_plugin_datastore.c
268 test_plugin_datastore_mysql_LDADD = \
269  $(top_builddir)/src/testing/libgnunettesting.la \
270  $(top_builddir)/src/util/libgnunetutil.la  
271
272 perf_plugin_datastore_mysql_SOURCES = \
273  perf_plugin_datastore.c
274 perf_plugin_datastore_mysql_LDADD = \
275  $(top_builddir)/src/testing/libgnunettesting.la \
276  $(top_builddir)/src/util/libgnunetutil.la  
277
278
279 test_datastore_api_postgres_SOURCES = \
280  test_datastore_api.c
281 test_datastore_api_postgres_LDADD = \
282  $(top_builddir)/src/testing/libgnunettesting.la \
283  $(top_builddir)/src/datastore/libgnunetdatastore.la \
284  $(top_builddir)/src/util/libgnunetutil.la  
285
286 test_datastore_api_management_postgres_SOURCES = \
287  test_datastore_api_management.c
288 test_datastore_api_management_postgres_LDADD = \
289  $(top_builddir)/src/testing/libgnunettesting.la \
290  $(top_builddir)/src/datastore/libgnunetdatastore.la \
291  $(top_builddir)/src/util/libgnunetutil.la  
292
293 perf_datastore_api_postgres_SOURCES = \
294  perf_datastore_api.c
295 perf_datastore_api_postgres_LDADD = \
296  $(top_builddir)/src/testing/libgnunettesting.la \
297  $(top_builddir)/src/datastore/libgnunetdatastore.la \
298  $(top_builddir)/src/util/libgnunetutil.la  
299
300 test_plugin_datastore_postgres_SOURCES = \
301  test_plugin_datastore.c
302 test_plugin_datastore_postgres_LDADD = \
303  $(top_builddir)/src/testing/libgnunettesting.la \
304  $(top_builddir)/src/util/libgnunetutil.la  
305
306 perf_plugin_datastore_postgres_SOURCES = \
307  perf_plugin_datastore.c
308 perf_plugin_datastore_postgres_LDADD = \
309  $(top_builddir)/src/testing/libgnunettesting.la \
310  $(top_builddir)/src/util/libgnunetutil.la  
311
312
313 EXTRA_DIST = \
314  test_defaults.conf \
315  test_datastore_api_data_sqlite.conf \
316  perf_plugin_datastore_data_sqlite.conf \
317  test_plugin_datastore_data_sqlite.conf \
318  test_datastore_api_data_heap.conf \
319  perf_plugin_datastore_data_heap.conf \
320  test_plugin_datastore_data_heap.conf \
321  test_datastore_api_data_mysql.conf \
322  perf_plugin_datastore_data_mysql.conf \
323  test_plugin_datastore_data_mysql.conf \
324  test_datastore_api_data_postgres.conf \
325  perf_plugin_datastore_data_postgres.conf \
326  test_plugin_datastore_data_postgres.conf