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