- refactor to check messages from both enc systems
[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   $(GN_LIBINTL)
53
54 plugin_LTLIBRARIES = \
55   $(SQLITE_PLUGIN)
56
57 libgnunet_plugin_psycstore_sqlite_la_SOURCES = \
58   plugin_psycstore_sqlite.c
59 libgnunet_plugin_psycstore_sqlite_la_LIBADD = \
60   libgnunetpsycstore.la  \
61   $(top_builddir)/src/statistics/libgnunetstatistics.la \
62   $(top_builddir)/src/util/libgnunetutil.la $(XLIBS) -lsqlite3 \
63   $(LTLIBINTL)
64 libgnunet_plugin_psycstore_sqlite_la_LDFLAGS = \
65  $(GN_PLUGIN_LDFLAGS)
66
67
68 if HAVE_TESTING
69 check_PROGRAMS = \
70  $(SQLITE_TESTS) \
71  test_psycstore
72 endif
73
74 if ENABLE_TEST_RUN
75 AM_TESTS_ENVIRONMENT=export GNUNET_PREFIX=$${GNUNET_PREFIX:-@libdir@};export PATH=$${GNUNET_PREFIX:-@prefix@}/bin:$$PATH;
76 TESTS = $(check_PROGRAMS)
77 endif
78
79 test_psycstore_SOURCES = \
80  test_psycstore.c
81 test_psycstore_LDADD = \
82   libgnunetpsycstore.la \
83   $(top_builddir)/src/testing/libgnunettesting.la \
84   $(top_builddir)/src/util/libgnunetutil.la
85
86 EXTRA_DIST = \
87   test_psycstore.conf
88
89
90 test_plugin_psycstore_sqlite_SOURCES = \
91  test_plugin_psycstore.c
92 test_plugin_psycstore_sqlite_LDADD = \
93   $(top_builddir)/src/testing/libgnunettesting.la \
94   $(top_builddir)/src/util/libgnunetutil.la