add nick name for cached records
[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 TESTS = $(check_PROGRAMS)
174 endif
175
176 test_datastore_api_heap_SOURCES = \
177  test_datastore_api.c
178 test_datastore_api_heap_LDADD = \
179  $(top_builddir)/src/testing/libgnunettesting.la \
180  $(top_builddir)/src/datastore/libgnunetdatastore.la \
181  $(top_builddir)/src/util/libgnunetutil.la  
182
183 test_datastore_api_management_heap_SOURCES = \
184  test_datastore_api_management.c
185 test_datastore_api_management_heap_LDADD = \
186  $(top_builddir)/src/testing/libgnunettesting.la \
187  $(top_builddir)/src/datastore/libgnunetdatastore.la \
188  $(top_builddir)/src/util/libgnunetutil.la  
189
190 perf_datastore_api_heap_SOURCES = \
191  perf_datastore_api.c
192 perf_datastore_api_heap_LDADD = \
193  $(top_builddir)/src/testing/libgnunettesting.la \
194  $(top_builddir)/src/datastore/libgnunetdatastore.la \
195  $(top_builddir)/src/util/libgnunetutil.la  
196
197 perf_plugin_datastore_heap_SOURCES = \
198  perf_plugin_datastore.c
199 perf_plugin_datastore_heap_LDADD = \
200  $(top_builddir)/src/testing/libgnunettesting.la \
201  $(top_builddir)/src/util/libgnunetutil.la  
202
203 test_plugin_datastore_heap_SOURCES = \
204  test_plugin_datastore.c
205 test_plugin_datastore_heap_LDADD = \
206  $(top_builddir)/src/testing/libgnunettesting.la \
207  $(top_builddir)/src/util/libgnunetutil.la  
208
209
210 test_datastore_api_sqlite_SOURCES = \
211  test_datastore_api.c
212 test_datastore_api_sqlite_LDADD = \
213  $(top_builddir)/src/testing/libgnunettesting.la \
214  $(top_builddir)/src/datastore/libgnunetdatastore.la \
215  $(top_builddir)/src/util/libgnunetutil.la  
216
217 test_datastore_api_management_sqlite_SOURCES = \
218  test_datastore_api_management.c
219 test_datastore_api_management_sqlite_LDADD = \
220  $(top_builddir)/src/testing/libgnunettesting.la \
221  $(top_builddir)/src/datastore/libgnunetdatastore.la \
222  $(top_builddir)/src/util/libgnunetutil.la  
223
224 perf_datastore_api_sqlite_SOURCES = \
225  perf_datastore_api.c
226 perf_datastore_api_sqlite_LDADD = \
227  $(top_builddir)/src/testing/libgnunettesting.la \
228  $(top_builddir)/src/datastore/libgnunetdatastore.la \
229  $(top_builddir)/src/util/libgnunetutil.la  
230
231 perf_plugin_datastore_sqlite_SOURCES = \
232  perf_plugin_datastore.c
233 perf_plugin_datastore_sqlite_LDADD = \
234  $(top_builddir)/src/testing/libgnunettesting.la \
235  $(top_builddir)/src/util/libgnunetutil.la  
236
237 test_plugin_datastore_sqlite_SOURCES = \
238  test_plugin_datastore.c
239 test_plugin_datastore_sqlite_LDADD = \
240  $(top_builddir)/src/testing/libgnunettesting.la \
241  $(top_builddir)/src/util/libgnunetutil.la  
242
243
244 test_datastore_api_mysql_SOURCES = \
245  test_datastore_api.c
246 test_datastore_api_mysql_LDADD = \
247  $(top_builddir)/src/testing/libgnunettesting.la \
248  $(top_builddir)/src/datastore/libgnunetdatastore.la \
249  $(top_builddir)/src/util/libgnunetutil.la  
250
251 test_datastore_api_management_mysql_SOURCES = \
252  test_datastore_api_management.c
253 test_datastore_api_management_mysql_LDADD = \
254  $(top_builddir)/src/testing/libgnunettesting.la \
255  $(top_builddir)/src/datastore/libgnunetdatastore.la \
256  $(top_builddir)/src/util/libgnunetutil.la  
257
258 perf_datastore_api_mysql_SOURCES = \
259  perf_datastore_api.c
260 perf_datastore_api_mysql_LDADD = \
261  $(top_builddir)/src/testing/libgnunettesting.la \
262  $(top_builddir)/src/datastore/libgnunetdatastore.la \
263  $(top_builddir)/src/util/libgnunetutil.la  
264
265 test_plugin_datastore_mysql_SOURCES = \
266  test_plugin_datastore.c
267 test_plugin_datastore_mysql_LDADD = \
268  $(top_builddir)/src/testing/libgnunettesting.la \
269  $(top_builddir)/src/util/libgnunetutil.la  
270
271 perf_plugin_datastore_mysql_SOURCES = \
272  perf_plugin_datastore.c
273 perf_plugin_datastore_mysql_LDADD = \
274  $(top_builddir)/src/testing/libgnunettesting.la \
275  $(top_builddir)/src/util/libgnunetutil.la  
276
277
278 test_datastore_api_postgres_SOURCES = \
279  test_datastore_api.c
280 test_datastore_api_postgres_LDADD = \
281  $(top_builddir)/src/testing/libgnunettesting.la \
282  $(top_builddir)/src/datastore/libgnunetdatastore.la \
283  $(top_builddir)/src/util/libgnunetutil.la  
284
285 test_datastore_api_management_postgres_SOURCES = \
286  test_datastore_api_management.c
287 test_datastore_api_management_postgres_LDADD = \
288  $(top_builddir)/src/testing/libgnunettesting.la \
289  $(top_builddir)/src/datastore/libgnunetdatastore.la \
290  $(top_builddir)/src/util/libgnunetutil.la  
291
292 perf_datastore_api_postgres_SOURCES = \
293  perf_datastore_api.c
294 perf_datastore_api_postgres_LDADD = \
295  $(top_builddir)/src/testing/libgnunettesting.la \
296  $(top_builddir)/src/datastore/libgnunetdatastore.la \
297  $(top_builddir)/src/util/libgnunetutil.la  
298
299 test_plugin_datastore_postgres_SOURCES = \
300  test_plugin_datastore.c
301 test_plugin_datastore_postgres_LDADD = \
302  $(top_builddir)/src/testing/libgnunettesting.la \
303  $(top_builddir)/src/util/libgnunetutil.la  
304
305 perf_plugin_datastore_postgres_SOURCES = \
306  perf_plugin_datastore.c
307 perf_plugin_datastore_postgres_LDADD = \
308  $(top_builddir)/src/testing/libgnunettesting.la \
309  $(top_builddir)/src/util/libgnunetutil.la  
310
311
312 EXTRA_DIST = \
313  test_defaults.conf \
314  test_datastore_api_data_sqlite.conf \
315  perf_plugin_datastore_data_sqlite.conf \
316  test_plugin_datastore_data_sqlite.conf \
317  test_datastore_api_data_heap.conf \
318  perf_plugin_datastore_data_heap.conf \
319  test_plugin_datastore_data_heap.conf \
320  test_datastore_api_data_mysql.conf \
321  perf_plugin_datastore_data_mysql.conf \
322  test_plugin_datastore_data_mysql.conf \
323  test_datastore_api_data_postgres.conf \
324  perf_plugin_datastore_data_postgres.conf \
325  test_plugin_datastore_data_postgres.conf