- fix coverity
[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_SQLITE
24 SQLITE_PLUGIN = libgnunet_plugin_psycstore_sqlite.la
25 if HAVE_TESTING
26 SQLITE_TESTS = test_plugin_psycstore_sqlite
27 endif
28 endif
29
30 lib_LTLIBRARIES = libgnunetpsycstore.la
31
32 libgnunetpsycstore_la_SOURCES = \
33   psycstore_api.c \
34   psycstore.h
35 libgnunetpsycstore_la_LIBADD = \
36   $(top_builddir)/src/util/libgnunetutil.la \
37   $(GN_LIBINTL) $(XLIB)
38 libgnunetpsycstore_la_LDFLAGS = \
39   $(GN_LIB_LDFLAGS)  $(WINFLAGS) \
40   -version-info 0:0:0
41
42 bin_PROGRAMS =
43
44 libexec_PROGRAMS = \
45  gnunet-service-psycstore
46
47 gnunet_service_psycstore_SOURCES = \
48  gnunet-service-psycstore.c
49 gnunet_service_psycstore_LDADD = \
50   $(top_builddir)/src/statistics/libgnunetstatistics.la \
51   $(top_builddir)/src/util/libgnunetutil.la \
52   $(top_builddir)/src/psycutil/libgnunetpsycutil.la \
53   $(GN_LIBINTL)
54
55 plugin_LTLIBRARIES = \
56   $(SQLITE_PLUGIN)
57
58 libgnunet_plugin_psycstore_mysql_la_SOURCES = \
59   plugin_psycstore_mysql.c
60 libgnunet_plugin_psycstore_mysql_la_LIBADD = \
61   libgnunetpsycstore.la  \
62   $(top_builddir)/src/my/libgnunetmy.la \
63   $(top_builddir)/src/mysql/libgnunetmysql.la \
64   $(top_builddir)/src/statistics/libgnunetstatistics.la \
65   $(top_builddir)/src/util/libgnunetutil.la $(XLIBS) \
66   $(LTLIBINTL)
67 libgnunet_plugin_psycstore_mysql_la_LDFLAGS = \
68  $(GN_PLUGIN_LDFLAGS)
69
70
71 libgnunet_plugin_psycstore_sqlite_la_SOURCES = \
72   plugin_psycstore_sqlite.c
73 libgnunet_plugin_psycstore_sqlite_la_LIBADD = \
74   libgnunetpsycstore.la  \
75   $(top_builddir)/src/statistics/libgnunetstatistics.la \
76   $(top_builddir)/src/util/libgnunetutil.la $(XLIBS) -lsqlite3 \
77   $(LTLIBINTL)
78 libgnunet_plugin_psycstore_sqlite_la_LDFLAGS = \
79  $(GN_PLUGIN_LDFLAGS)
80
81
82 if HAVE_SQLITE
83 if HAVE_TESTING
84 check_PROGRAMS = \
85  $(SQLITE_TESTS) \
86  test_psycstore
87 endif
88 endif
89
90 if ENABLE_TEST_RUN
91 AM_TESTS_ENVIRONMENT=export GNUNET_PREFIX=$${GNUNET_PREFIX:-@libdir@};export PATH=$${GNUNET_PREFIX:-@prefix@}/bin:$$PATH;
92 TESTS = $(check_PROGRAMS)
93 endif
94
95 test_psycstore_SOURCES = \
96  test_psycstore.c
97 test_psycstore_LDADD = \
98   libgnunetpsycstore.la \
99   $(top_builddir)/src/testing/libgnunettesting.la \
100   $(top_builddir)/src/util/libgnunetutil.la
101
102 EXTRA_DIST = \
103   test_psycstore.conf
104
105
106 test_plugin_psycstore_sqlite_SOURCES = \
107  test_plugin_psycstore.c
108 test_plugin_psycstore_sqlite_LDADD = \
109   $(top_builddir)/src/testing/libgnunettesting.la \
110   $(top_builddir)/src/util/libgnunetutil.la