-using testing in datastore tests
[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 pkgcfg_DATA = \
8   datastore.conf
9
10 if MINGW
11   WINFLAGS = -Wl,--no-undefined -Wl,--export-all-symbols
12 endif
13
14 if USE_COVERAGE
15   AM_CFLAGS = --coverage -O0
16   XLIBS = -lgcov
17 endif
18
19
20 lib_LTLIBRARIES = \
21   libgnunetdatastore.la
22
23 libgnunetdatastore_la_SOURCES = \
24   datastore_api.c datastore.h 
25 libgnunetdatastore_la_LIBADD = \
26   $(top_builddir)/src/statistics/libgnunetstatistics.la \
27   $(top_builddir)/src/util/libgnunetutil.la \
28   $(GN_LIBINTL) 
29 libgnunetdatastore_la_LDFLAGS = \
30   $(GN_LIB_LDFLAGS) $(WINFLAGS) \
31   -version-info 1:0:0
32
33
34 bin_PROGRAMS = \
35  gnunet-service-datastore
36
37 gnunet_service_datastore_SOURCES = \
38  gnunet-service-datastore.c 
39 gnunet_service_datastore_LDADD = \
40   $(top_builddir)/src/statistics/libgnunetstatistics.la \
41   $(top_builddir)/src/util/libgnunetutil.la \
42   $(GN_LIBINTL)
43
44 if HAVE_MYSQL
45  MYSQL_PLUGIN = libgnunet_plugin_datastore_mysql.la
46 if HAVE_BENCHMARKS
47   MYSQL_BENCHMARKS = \
48    perf_datastore_api_mysql \
49    perf_plugin_datastore_mysql
50 endif
51  MYSQL_TESTS = \
52   test_datastore_api_mysql \
53   test_datastore_api_management_mysql \
54   test_plugin_datastore_mysql \
55   $(MYSQL_BENCHMARKS)
56 endif
57 if HAVE_SQLITE
58  SQLITE_PLUGIN = libgnunet_plugin_datastore_sqlite.la
59 if HAVE_BENCHMARKS
60   SQLITE_BENCHMARKS = \
61    perf_datastore_api_sqlite \
62    perf_plugin_datastore_sqlite
63 endif
64  SQLITE_TESTS = \
65   test_datastore_api_sqlite \
66   test_datastore_api_management_sqlite \
67   test_plugin_datastore_sqlite \
68   $(SQLITE_BENCHMARKS)
69 endif
70 if HAVE_POSTGRES
71  POSTGRES_PLUGIN = libgnunet_plugin_datastore_postgres.la
72 if HAVE_BENCHMARKS
73   POSTGRES_BENCHMARKS = \
74    perf_datastore_api_postgres \
75    perf_plugin_datastore_postgres
76 endif
77  POSTGRES_TESTS = \
78   test_datastore_api_postgres \
79   test_datastore_api_management_postgres \
80   test_plugin_datastore_postgres \
81   $(POSTGRES_BENCHMARKS)
82 endif
83
84 plugin_LTLIBRARIES = \
85   $(SQLITE_PLUGIN) \
86   $(MYSQL_PLUGIN) \
87   $(POSTGRES_PLUGIN) \
88   libgnunet_plugin_datastore_template.la 
89
90
91 libgnunet_plugin_datastore_sqlite_la_SOURCES = \
92   plugin_datastore_sqlite.c
93 libgnunet_plugin_datastore_sqlite_la_LIBADD = \
94   $(top_builddir)/src/statistics/libgnunetstatistics.la \
95   $(top_builddir)/src/util/libgnunetutil.la $(XLIBS) -lsqlite3 \
96   $(LTLIBINTL)
97 libgnunet_plugin_datastore_sqlite_la_LDFLAGS = \
98  $(GN_PLUGIN_LDFLAGS)
99
100
101 libgnunet_plugin_datastore_mysql_la_SOURCES = \
102   plugin_datastore_mysql.c
103 libgnunet_plugin_datastore_mysql_la_LIBADD = \
104   $(top_builddir)/src/mysql/libgnunetmysql.la \
105   $(top_builddir)/src/statistics/libgnunetstatistics.la \
106   $(top_builddir)/src/util/libgnunetutil.la $(XLIBS) -lz -lmysqlclient
107 libgnunet_plugin_datastore_mysql_la_LDFLAGS = \
108  $(GN_PLUGIN_LDFLAGS) $(MYSQL_LDFLAGS) -lmysqlclient
109 libgnunet_plugin_datastore_mysql_la_CPPFLAGS = \
110  $(MYSQL_CPPFLAGS)
111
112 libgnunet_plugin_datastore_postgres_la_SOURCES = \
113   plugin_datastore_postgres.c
114 libgnunet_plugin_datastore_postgres_la_LIBADD = \
115   $(top_builddir)/src/statistics/libgnunetstatistics.la \
116   $(top_builddir)/src/postgres/libgnunetpostgres.la \
117   $(top_builddir)/src/util/libgnunetutil.la $(XLIBS) -lpq
118 libgnunet_plugin_datastore_postgres_la_LDFLAGS = \
119  $(GN_PLUGIN_LDFLAGS) $(POSTGRES_LDFLAGS) -lpq
120 libgnunet_plugin_datastore_postgres_la_CPPFLAGS = \
121  $(POSTGRES_CPPFLAGS)
122
123
124 libgnunet_plugin_datastore_template_la_SOURCES = \
125   plugin_datastore_template.c
126 libgnunet_plugin_datastore_template_la_LIBADD = \
127   $(top_builddir)/src/util/libgnunetutil.la $(XLIBS) \
128   $(LTLIBINTL)
129 libgnunet_plugin_datastore_template_la_LDFLAGS = \
130  $(GN_PLUGIN_LDFLAGS)
131
132 check_PROGRAMS = \
133   $(SQLITE_TESTS) \
134   $(MYSQL_TESTS) \
135   $(POSTGRES_TESTS)
136
137 if ENABLE_TEST_RUN
138 TESTS = $(check_PROGRAMS)
139 endif
140
141 test_datastore_api_sqlite_SOURCES = \
142  test_datastore_api.c
143 test_datastore_api_sqlite_LDADD = \
144  $(top_builddir)/src/testing/libgnunettesting.la \
145  $(top_builddir)/src/datastore/libgnunetdatastore.la \
146  $(top_builddir)/src/util/libgnunetutil.la  
147
148 test_datastore_api_management_sqlite_SOURCES = \
149  test_datastore_api_management.c
150 test_datastore_api_management_sqlite_LDADD = \
151  $(top_builddir)/src/testing/libgnunettesting.la \
152  $(top_builddir)/src/datastore/libgnunetdatastore.la \
153  $(top_builddir)/src/util/libgnunetutil.la  
154
155 perf_datastore_api_sqlite_SOURCES = \
156  perf_datastore_api.c
157 perf_datastore_api_sqlite_LDADD = \
158  $(top_builddir)/src/testing/libgnunettesting.la \
159  $(top_builddir)/src/datastore/libgnunetdatastore.la \
160  $(top_builddir)/src/util/libgnunetutil.la  
161
162 perf_plugin_datastore_sqlite_SOURCES = \
163  perf_plugin_datastore.c
164 perf_plugin_datastore_sqlite_LDADD = \
165  $(top_builddir)/src/util/libgnunetutil.la  
166
167 test_plugin_datastore_sqlite_SOURCES = \
168  test_plugin_datastore.c
169 test_plugin_datastore_sqlite_LDADD = \
170  $(top_builddir)/src/util/libgnunetutil.la  
171
172
173 test_datastore_api_mysql_SOURCES = \
174  test_datastore_api.c
175 test_datastore_api_mysql_LDADD = \
176  $(top_builddir)/src/testing/libgnunettesting.la \
177  $(top_builddir)/src/datastore/libgnunetdatastore.la \
178  $(top_builddir)/src/util/libgnunetutil.la  
179
180 test_datastore_api_management_mysql_SOURCES = \
181  test_datastore_api_management.c
182 test_datastore_api_management_mysql_LDADD = \
183  $(top_builddir)/src/testing/libgnunettesting.la \
184  $(top_builddir)/src/datastore/libgnunetdatastore.la \
185  $(top_builddir)/src/util/libgnunetutil.la  
186
187 perf_datastore_api_mysql_SOURCES = \
188  perf_datastore_api.c
189 perf_datastore_api_mysql_LDADD = \
190  $(top_builddir)/src/testing/libgnunettesting.la \
191  $(top_builddir)/src/datastore/libgnunetdatastore.la \
192  $(top_builddir)/src/util/libgnunetutil.la  
193
194 test_plugin_datastore_mysql_SOURCES = \
195  test_plugin_datastore.c
196 test_plugin_datastore_mysql_LDADD = \
197  $(top_builddir)/src/util/libgnunetutil.la  
198
199 perf_plugin_datastore_mysql_SOURCES = \
200  perf_plugin_datastore.c
201 perf_plugin_datastore_mysql_LDADD = \
202  $(top_builddir)/src/util/libgnunetutil.la  
203
204
205 test_datastore_api_postgres_SOURCES = \
206  test_datastore_api.c
207 test_datastore_api_postgres_LDADD = \
208  $(top_builddir)/src/testing/libgnunettesting.la \
209  $(top_builddir)/src/datastore/libgnunetdatastore.la \
210  $(top_builddir)/src/util/libgnunetutil.la  
211
212 test_datastore_api_management_postgres_SOURCES = \
213  test_datastore_api_management.c
214 test_datastore_api_management_postgres_LDADD = \
215  $(top_builddir)/src/testing/libgnunettesting.la \
216  $(top_builddir)/src/datastore/libgnunetdatastore.la \
217  $(top_builddir)/src/util/libgnunetutil.la  
218
219 perf_datastore_api_postgres_SOURCES = \
220  perf_datastore_api.c
221 perf_datastore_api_postgres_LDADD = \
222  $(top_builddir)/src/testing/libgnunettesting.la \
223  $(top_builddir)/src/datastore/libgnunetdatastore.la \
224  $(top_builddir)/src/util/libgnunetutil.la  
225
226 test_plugin_datastore_postgres_SOURCES = \
227  test_plugin_datastore.c
228 test_plugin_datastore_postgres_LDADD = \
229  $(top_builddir)/src/util/libgnunetutil.la  
230
231 perf_plugin_datastore_postgres_SOURCES = \
232  perf_plugin_datastore.c
233 perf_plugin_datastore_postgres_LDADD = \
234  $(top_builddir)/src/util/libgnunetutil.la  
235
236
237 EXTRA_DIST = \
238  test_defaults.conf \
239  test_datastore_api_data_sqlite.conf \
240  perf_plugin_datastore_data_sqlite.conf \
241  test_datastore_api_data_mysql.conf \
242  perf_plugin_datastore_data_mysql.conf \
243  test_datastore_api_data_postgres.conf \
244  perf_plugin_datastore_data_postgres.conf \
245  test_plugin_datastore_data_mysql.conf \
246  test_plugin_datastore_data_postgres.conf \
247  test_plugin_datastore_data_sqlite.conf