Make gnunet-datastore dependent on libgnunetdatastore
[oweals/gnunet.git] / src / datastore / Makefile.am
1 INCLUDES = -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_BENCHMARKS
61   MYSQL_BENCHMARKS = \
62    perf_datastore_api_mysql \
63    perf_plugin_datastore_mysql
64 endif
65  MYSQL_TESTS = \
66   test_datastore_api_mysql \
67   test_datastore_api_management_mysql \
68   test_plugin_datastore_mysql \
69   $(MYSQL_BENCHMARKS)
70 endif
71 if HAVE_SQLITE
72  SQLITE_PLUGIN = libgnunet_plugin_datastore_sqlite.la
73 if HAVE_BENCHMARKS
74   SQLITE_BENCHMARKS = \
75    perf_datastore_api_sqlite \
76    perf_plugin_datastore_sqlite
77 endif
78  SQLITE_TESTS = \
79   test_datastore_api_sqlite \
80   test_datastore_api_management_sqlite \
81   test_plugin_datastore_sqlite \
82   $(SQLITE_BENCHMARKS)
83 endif
84 if HAVE_POSTGRES
85  POSTGRES_PLUGIN = libgnunet_plugin_datastore_postgres.la
86 if HAVE_BENCHMARKS
87   POSTGRES_BENCHMARKS = \
88    perf_datastore_api_postgres \
89    perf_plugin_datastore_postgres
90 endif
91  POSTGRES_TESTS = \
92   test_datastore_api_postgres \
93   test_datastore_api_management_postgres \
94   test_plugin_datastore_postgres \
95   $(POSTGRES_BENCHMARKS)
96 endif
97
98 plugin_LTLIBRARIES = \
99   $(SQLITE_PLUGIN) \
100   $(MYSQL_PLUGIN) \
101   $(POSTGRES_PLUGIN) \
102   libgnunet_plugin_datastore_heap.la \
103   libgnunet_plugin_datastore_template.la 
104
105
106 libgnunet_plugin_datastore_sqlite_la_SOURCES = \
107   plugin_datastore_sqlite.c
108 libgnunet_plugin_datastore_sqlite_la_LIBADD = \
109   $(top_builddir)/src/statistics/libgnunetstatistics.la \
110   $(top_builddir)/src/util/libgnunetutil.la $(XLIBS) -lsqlite3 \
111   $(LTLIBINTL)
112 libgnunet_plugin_datastore_sqlite_la_LDFLAGS = \
113  $(GN_PLUGIN_LDFLAGS)
114
115
116 libgnunet_plugin_datastore_heap_la_SOURCES = \
117   plugin_datastore_heap.c
118 libgnunet_plugin_datastore_heap_la_LIBADD = \
119   $(top_builddir)/src/util/libgnunetutil.la $(XLIBS) \
120   $(LTLIBINTL)
121 libgnunet_plugin_datastore_heap_la_LDFLAGS = \
122  $(GN_PLUGIN_LDFLAGS)
123
124
125 libgnunet_plugin_datastore_mysql_la_SOURCES = \
126   plugin_datastore_mysql.c
127 libgnunet_plugin_datastore_mysql_la_LIBADD = \
128   $(top_builddir)/src/mysql/libgnunetmysql.la \
129   $(top_builddir)/src/statistics/libgnunetstatistics.la \
130   $(top_builddir)/src/util/libgnunetutil.la $(XLIBS) $(Z_LIBS) -lmysqlclient
131 libgnunet_plugin_datastore_mysql_la_LDFLAGS = \
132  $(GN_PLUGIN_LDFLAGS) $(MYSQL_LDFLAGS) -lmysqlclient
133 libgnunet_plugin_datastore_mysql_la_CPPFLAGS = \
134  $(MYSQL_CPPFLAGS)
135
136 libgnunet_plugin_datastore_postgres_la_SOURCES = \
137   plugin_datastore_postgres.c
138 libgnunet_plugin_datastore_postgres_la_LIBADD = \
139   $(top_builddir)/src/statistics/libgnunetstatistics.la \
140   $(top_builddir)/src/postgres/libgnunetpostgres.la \
141   $(top_builddir)/src/util/libgnunetutil.la $(XLIBS) -lpq
142 libgnunet_plugin_datastore_postgres_la_LDFLAGS = \
143  $(GN_PLUGIN_LDFLAGS) $(POSTGRES_LDFLAGS) -lpq
144 libgnunet_plugin_datastore_postgres_la_CPPFLAGS = \
145  $(POSTGRES_CPPFLAGS)
146
147
148 libgnunet_plugin_datastore_template_la_SOURCES = \
149   plugin_datastore_template.c
150 libgnunet_plugin_datastore_template_la_LIBADD = \
151   $(top_builddir)/src/util/libgnunetutil.la $(XLIBS) \
152   $(LTLIBINTL)
153 libgnunet_plugin_datastore_template_la_LDFLAGS = \
154  $(GN_PLUGIN_LDFLAGS)
155
156 check_PROGRAMS = \
157   test_datastore_api_heap \
158   test_datastore_api_management_heap \
159   perf_datastore_api_heap \
160   perf_plugin_datastore_heap \
161   test_plugin_datastore_heap \
162   $(SQLITE_TESTS) \
163   $(MYSQL_TESTS) \
164   $(POSTGRES_TESTS)
165
166 if ENABLE_TEST_RUN
167 TESTS = $(check_PROGRAMS)
168 endif
169
170 test_datastore_api_heap_SOURCES = \
171  test_datastore_api.c
172 test_datastore_api_heap_LDADD = \
173  $(top_builddir)/src/testing/libgnunettesting.la \
174  $(top_builddir)/src/datastore/libgnunetdatastore.la \
175  $(top_builddir)/src/util/libgnunetutil.la  
176
177 test_datastore_api_management_heap_SOURCES = \
178  test_datastore_api_management.c
179 test_datastore_api_management_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 perf_datastore_api_heap_SOURCES = \
185  perf_datastore_api.c
186 perf_datastore_api_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_plugin_datastore_heap_SOURCES = \
192  perf_plugin_datastore.c
193 perf_plugin_datastore_heap_LDADD = \
194  $(top_builddir)/src/testing/libgnunettesting.la \
195  $(top_builddir)/src/util/libgnunetutil.la  
196
197 test_plugin_datastore_heap_SOURCES = \
198  test_plugin_datastore.c
199 test_plugin_datastore_heap_LDADD = \
200  $(top_builddir)/src/testing/libgnunettesting.la \
201  $(top_builddir)/src/util/libgnunetutil.la  
202
203
204 test_datastore_api_sqlite_SOURCES = \
205  test_datastore_api.c
206 test_datastore_api_sqlite_LDADD = \
207  $(top_builddir)/src/testing/libgnunettesting.la \
208  $(top_builddir)/src/datastore/libgnunetdatastore.la \
209  $(top_builddir)/src/util/libgnunetutil.la  
210
211 test_datastore_api_management_sqlite_SOURCES = \
212  test_datastore_api_management.c
213 test_datastore_api_management_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 perf_datastore_api_sqlite_SOURCES = \
219  perf_datastore_api.c
220 perf_datastore_api_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_plugin_datastore_sqlite_SOURCES = \
226  perf_plugin_datastore.c
227 perf_plugin_datastore_sqlite_LDADD = \
228  $(top_builddir)/src/testing/libgnunettesting.la \
229  $(top_builddir)/src/util/libgnunetutil.la  
230
231 test_plugin_datastore_sqlite_SOURCES = \
232  test_plugin_datastore.c
233 test_plugin_datastore_sqlite_LDADD = \
234  $(top_builddir)/src/testing/libgnunettesting.la \
235  $(top_builddir)/src/util/libgnunetutil.la  
236
237
238 test_datastore_api_mysql_SOURCES = \
239  test_datastore_api.c
240 test_datastore_api_mysql_LDADD = \
241  $(top_builddir)/src/testing/libgnunettesting.la \
242  $(top_builddir)/src/datastore/libgnunetdatastore.la \
243  $(top_builddir)/src/util/libgnunetutil.la  
244
245 test_datastore_api_management_mysql_SOURCES = \
246  test_datastore_api_management.c
247 test_datastore_api_management_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 perf_datastore_api_mysql_SOURCES = \
253  perf_datastore_api.c
254 perf_datastore_api_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 test_plugin_datastore_mysql_SOURCES = \
260  test_plugin_datastore.c
261 test_plugin_datastore_mysql_LDADD = \
262  $(top_builddir)/src/testing/libgnunettesting.la \
263  $(top_builddir)/src/util/libgnunetutil.la  
264
265 perf_plugin_datastore_mysql_SOURCES = \
266  perf_plugin_datastore.c
267 perf_plugin_datastore_mysql_LDADD = \
268  $(top_builddir)/src/testing/libgnunettesting.la \
269  $(top_builddir)/src/util/libgnunetutil.la  
270
271
272 test_datastore_api_postgres_SOURCES = \
273  test_datastore_api.c
274 test_datastore_api_postgres_LDADD = \
275  $(top_builddir)/src/testing/libgnunettesting.la \
276  $(top_builddir)/src/datastore/libgnunetdatastore.la \
277  $(top_builddir)/src/util/libgnunetutil.la  
278
279 test_datastore_api_management_postgres_SOURCES = \
280  test_datastore_api_management.c
281 test_datastore_api_management_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 perf_datastore_api_postgres_SOURCES = \
287  perf_datastore_api.c
288 perf_datastore_api_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 test_plugin_datastore_postgres_SOURCES = \
294  test_plugin_datastore.c
295 test_plugin_datastore_postgres_LDADD = \
296  $(top_builddir)/src/testing/libgnunettesting.la \
297  $(top_builddir)/src/util/libgnunetutil.la  
298
299 perf_plugin_datastore_postgres_SOURCES = \
300  perf_plugin_datastore.c
301 perf_plugin_datastore_postgres_LDADD = \
302  $(top_builddir)/src/testing/libgnunettesting.la \
303  $(top_builddir)/src/util/libgnunetutil.la  
304
305
306 EXTRA_DIST = \
307  test_defaults.conf \
308  test_datastore_api_data_sqlite.conf \
309  perf_plugin_datastore_data_sqlite.conf \
310  test_plugin_datastore_data_sqlite.conf \
311  test_datastore_api_data_heap.conf \
312  perf_plugin_datastore_data_heap.conf \
313  test_plugin_datastore_data_heap.conf \
314  test_datastore_api_data_mysql.conf \
315  perf_plugin_datastore_data_mysql.conf \
316  test_plugin_datastore_data_mysql.conf \
317  test_datastore_api_data_postgres.conf \
318  perf_plugin_datastore_data_postgres.conf \
319  test_plugin_datastore_data_postgres.conf