-cleanup
[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 libgnunet_plugin_datastore_sqlite_la_LDFLAGS = \
97  $(GN_PLUGIN_LDFLAGS)
98
99
100 libgnunet_plugin_datastore_mysql_la_SOURCES = \
101   plugin_datastore_mysql.c
102 libgnunet_plugin_datastore_mysql_la_LIBADD = \
103   $(top_builddir)/src/mysql/libgnunetmysql.la \
104   $(top_builddir)/src/statistics/libgnunetstatistics.la \
105   $(top_builddir)/src/util/libgnunetutil.la $(XLIBS) -lz -lmysqlclient
106 libgnunet_plugin_datastore_mysql_la_LDFLAGS = \
107  $(GN_PLUGIN_LDFLAGS) $(MYSQL_LDFLAGS) -lmysqlclient
108 libgnunet_plugin_datastore_mysql_la_CPPFLAGS = \
109  $(MYSQL_CPPFLAGS)
110
111 libgnunet_plugin_datastore_postgres_la_SOURCES = \
112   plugin_datastore_postgres.c
113 libgnunet_plugin_datastore_postgres_la_LIBADD = \
114   $(top_builddir)/src/statistics/libgnunetstatistics.la \
115   $(top_builddir)/src/postgres/libgnunetpostgres.la \
116   $(top_builddir)/src/util/libgnunetutil.la $(XLIBS) -lpq
117 libgnunet_plugin_datastore_postgres_la_LDFLAGS = \
118  $(GN_PLUGIN_LDFLAGS) $(POSTGRES_LDFLAGS) -lpq
119 libgnunet_plugin_datastore_postgres_la_CPPFLAGS = \
120  $(POSTGRES_CPPFLAGS)
121
122
123 libgnunet_plugin_datastore_template_la_SOURCES = \
124   plugin_datastore_template.c
125 libgnunet_plugin_datastore_template_la_LIBADD = \
126   $(top_builddir)/src/util/libgnunetutil.la $(XLIBS)
127 libgnunet_plugin_datastore_template_la_LDFLAGS = \
128  $(GN_PLUGIN_LDFLAGS)
129
130 check_PROGRAMS = \
131   $(SQLITE_TESTS) \
132   $(MYSQL_TESTS) \
133   $(POSTGRES_TESTS)
134
135 if ENABLE_TEST_RUN
136 TESTS = $(check_PROGRAMS)
137 endif
138
139 test_datastore_api_sqlite_SOURCES = \
140  test_datastore_api.c
141 test_datastore_api_sqlite_LDADD = \
142  $(top_builddir)/src/datastore/libgnunetdatastore.la \
143  $(top_builddir)/src/util/libgnunetutil.la  
144
145 test_datastore_api_management_sqlite_SOURCES = \
146  test_datastore_api_management.c
147 test_datastore_api_management_sqlite_LDADD = \
148  $(top_builddir)/src/datastore/libgnunetdatastore.la \
149  $(top_builddir)/src/util/libgnunetutil.la  
150
151 perf_datastore_api_sqlite_SOURCES = \
152  perf_datastore_api.c
153 perf_datastore_api_sqlite_LDADD = \
154  $(top_builddir)/src/datastore/libgnunetdatastore.la \
155  $(top_builddir)/src/util/libgnunetutil.la  
156
157 perf_plugin_datastore_sqlite_SOURCES = \
158  perf_plugin_datastore.c
159 perf_plugin_datastore_sqlite_LDADD = \
160  $(top_builddir)/src/util/libgnunetutil.la  
161
162 test_plugin_datastore_sqlite_SOURCES = \
163  test_plugin_datastore.c
164 test_plugin_datastore_sqlite_LDADD = \
165  $(top_builddir)/src/util/libgnunetutil.la  
166
167
168 test_datastore_api_mysql_SOURCES = \
169  test_datastore_api.c
170 test_datastore_api_mysql_LDADD = \
171  $(top_builddir)/src/datastore/libgnunetdatastore.la \
172  $(top_builddir)/src/util/libgnunetutil.la  
173
174 test_datastore_api_management_mysql_SOURCES = \
175  test_datastore_api_management.c
176 test_datastore_api_management_mysql_LDADD = \
177  $(top_builddir)/src/datastore/libgnunetdatastore.la \
178  $(top_builddir)/src/util/libgnunetutil.la  
179
180 perf_datastore_api_mysql_SOURCES = \
181  perf_datastore_api.c
182 perf_datastore_api_mysql_LDADD = \
183  $(top_builddir)/src/datastore/libgnunetdatastore.la \
184  $(top_builddir)/src/util/libgnunetutil.la  
185
186 test_plugin_datastore_mysql_SOURCES = \
187  test_plugin_datastore.c
188 test_plugin_datastore_mysql_LDADD = \
189  $(top_builddir)/src/util/libgnunetutil.la  
190
191 perf_plugin_datastore_mysql_SOURCES = \
192  perf_plugin_datastore.c
193 perf_plugin_datastore_mysql_LDADD = \
194  $(top_builddir)/src/util/libgnunetutil.la  
195
196
197 test_datastore_api_postgres_SOURCES = \
198  test_datastore_api.c
199 test_datastore_api_postgres_LDADD = \
200  $(top_builddir)/src/datastore/libgnunetdatastore.la \
201  $(top_builddir)/src/util/libgnunetutil.la  
202
203 test_datastore_api_management_postgres_SOURCES = \
204  test_datastore_api_management.c
205 test_datastore_api_management_postgres_LDADD = \
206  $(top_builddir)/src/datastore/libgnunetdatastore.la \
207  $(top_builddir)/src/util/libgnunetutil.la  
208
209 perf_datastore_api_postgres_SOURCES = \
210  perf_datastore_api.c
211 perf_datastore_api_postgres_LDADD = \
212  $(top_builddir)/src/datastore/libgnunetdatastore.la \
213  $(top_builddir)/src/util/libgnunetutil.la  
214
215 test_plugin_datastore_postgres_SOURCES = \
216  test_plugin_datastore.c
217 test_plugin_datastore_postgres_LDADD = \
218  $(top_builddir)/src/util/libgnunetutil.la  
219
220 perf_plugin_datastore_postgres_SOURCES = \
221  perf_plugin_datastore.c
222 perf_plugin_datastore_postgres_LDADD = \
223  $(top_builddir)/src/util/libgnunetutil.la  
224
225
226 EXTRA_DIST = \
227  test_defaults.conf \
228  test_datastore_api_data_sqlite.conf \
229  perf_plugin_datastore_data_sqlite.conf \
230  test_datastore_api_data_mysql.conf \
231  perf_plugin_datastore_data_mysql.conf \
232  test_datastore_api_data_postgres.conf \
233  perf_plugin_datastore_data_postgres.conf \
234  test_plugin_datastore_data_mysql.conf \
235  test_plugin_datastore_data_postgres.conf \
236  test_plugin_datastore_data_sqlite.conf