use gnunetcheck for the DB
[oweals/gnunet.git] / src / psycstore / Makefile.am
1 # This Makefile.am is in the public domain
2 AM_CPPFLAGS = -I$(top_srcdir)/src/include
3
4 plugindir = $(libdir)/gnunet
5
6 pkgcfgdir= $(pkgdatadir)/config.d/
7
8 libexecdir= $(pkglibdir)/libexec/
9
10 pkgcfg_DATA = \
11   psycstore.conf
12
13
14 if MINGW
15  WINFLAGS = -Wl,--no-undefined -Wl,--export-all-symbols
16 endif
17
18 if USE_COVERAGE
19   AM_CFLAGS = --coverage -O0
20   XLIB = -lgcov
21 endif
22
23 if HAVE_MYSQL
24 MYSQL_PLUGIN = libgnunet_plugin_psycstore_mysql.la
25 if HAVE_TESTING
26 MYSQL_TESTS = test_plugin_psycstore_mysql
27 endif
28 endif
29
30 if HAVE_POSTGRESQL
31 POSTGRES_PLUGIN = libgnunet_plugin_psycstore_postgres.la
32 if HAVE_TESTING
33 POSTGRES_TESTS = test_plugin_psycstore_postgres
34 endif
35 endif
36
37 if HAVE_SQLITE
38 SQLITE_PLUGIN = libgnunet_plugin_psycstore_sqlite.la
39 if HAVE_TESTING
40 SQLITE_TESTS = test_plugin_psycstore_sqlite
41 endif
42 endif
43
44 lib_LTLIBRARIES = libgnunetpsycstore.la
45
46 libgnunetpsycstore_la_SOURCES = \
47   psycstore_api.c \
48   psycstore.h
49 libgnunetpsycstore_la_LIBADD = \
50   $(top_builddir)/src/util/libgnunetutil.la \
51   $(GN_LIBINTL) $(XLIB)
52 libgnunetpsycstore_la_LDFLAGS = \
53   $(GN_LIB_LDFLAGS)  $(WINFLAGS) \
54   -version-info 0:0:0
55
56 bin_PROGRAMS =
57
58 libexec_PROGRAMS = \
59  gnunet-service-psycstore
60
61 gnunet_service_psycstore_SOURCES = \
62  gnunet-service-psycstore.c
63 gnunet_service_psycstore_LDADD = \
64   $(top_builddir)/src/statistics/libgnunetstatistics.la \
65   $(top_builddir)/src/util/libgnunetutil.la \
66   $(top_builddir)/src/psycutil/libgnunetpsycutil.la \
67   $(GN_LIBINTL)
68
69 plugin_LTLIBRARIES = \
70   $(SQLITE_PLUGIN) \
71   $(MYSQL_PLUGIN) \
72   $(POSTGRES_PLUGIN)
73
74
75 libgnunet_plugin_psycstore_mysql_la_SOURCES = \
76   plugin_psycstore_mysql.c
77 libgnunet_plugin_psycstore_mysql_la_LIBADD = \
78   libgnunetpsycstore.la  \
79   $(top_builddir)/src/my/libgnunetmy.la \
80   $(top_builddir)/src/mysql/libgnunetmysql.la \
81   $(top_builddir)/src/statistics/libgnunetstatistics.la \
82   $(top_builddir)/src/util/libgnunetutil.la $(XLIBS) \
83   $(LTLIBINTL)
84 libgnunet_plugin_psycstore_mysql_la_LDFLAGS = \
85  $(GN_PLUGIN_LDFLAGS)
86
87 libgnunet_plugin_psycstore_postgres_la_SOURCES = \
88   plugin_psycstore_postgres.c
89 libgnunet_plugin_psycstore_postgres_la_LIBADD = \
90   libgnunetpsycstore.la  \
91   $(top_builddir)/src/postgres/libgnunetpostgres.la  \
92   $(top_builddir)/src/pq/libgnunetpq.la  \
93   $(top_builddir)/src/statistics/libgnunetstatistics.la \
94   $(top_builddir)/src/util/libgnunetutil.la $(XLIBS) -lpq \
95   $(LTLIBINTL)
96 libgnunet_plugin_psycstore_postgres_la_LDFLAGS = \
97  $(GN_PLUGIN_LDFLAGS) $(POSTGRESQL_LDFLAGS)
98
99 libgnunet_plugin_psycstore_sqlite_la_SOURCES = \
100   plugin_psycstore_sqlite.c
101 libgnunet_plugin_psycstore_sqlite_la_LIBADD = \
102   libgnunetpsycstore.la  \
103   $(top_builddir)/src/statistics/libgnunetstatistics.la \
104   $(top_builddir)/src/util/libgnunetutil.la $(XLIBS) -lsqlite3 \
105   $(LTLIBINTL)
106 libgnunet_plugin_psycstore_sqlite_la_LDFLAGS = \
107  $(GN_PLUGIN_LDFLAGS)
108
109
110 if HAVE_SQLITE
111 if HAVE_TESTING
112 check_PROGRAMS = \
113  $(SQLITE_TESTS) \
114  $(MYSQL_TESTS) \
115  $(POSTGRES_TESTS) \
116  test_psycstore
117 endif
118 endif
119
120 if ENABLE_TEST_RUN
121 AM_TESTS_ENVIRONMENT=export GNUNET_PREFIX=$${GNUNET_PREFIX:-@libdir@};export PATH=$${GNUNET_PREFIX:-@prefix@}/bin:$$PATH;
122 TESTS = $(check_PROGRAMS)
123 endif
124
125 test_psycstore_SOURCES = \
126  test_psycstore.c
127 test_psycstore_LDADD = \
128   libgnunetpsycstore.la \
129   $(top_builddir)/src/testing/libgnunettesting.la \
130   $(top_builddir)/src/util/libgnunetutil.la
131
132 EXTRA_DIST = \
133   test_psycstore.conf
134
135
136 test_plugin_psycstore_sqlite_SOURCES = \
137  test_plugin_psycstore.c
138 test_plugin_psycstore_sqlite_LDADD = \
139   $(top_builddir)/src/testing/libgnunettesting.la \
140   $(top_builddir)/src/util/libgnunetutil.la
141
142 test_plugin_psycstore_mysql_SOURCES = \
143  test_plugin_psycstore.c
144 test_plugin_psycstore_mysql_LDADD = \
145   $(top_builddir)/src/testing/libgnunettesting.la \
146   $(top_builddir)/src/util/libgnunetutil.la
147
148 test_plugin_psycstore_postgres_SOURCES = \
149  test_plugin_psycstore.c
150 test_plugin_psycstore_postgres_LDADD = \
151  $(top_builddir)/src/testing/libgnunettesting.la \
152  $(top_builddir)/src/util/libgnunetutil.la
153