peerstore: fixes in watch functionality
[oweals/gnunet.git] / src / peerstore / Makefile.am
1 AM_CPPFLAGS = -I$(top_srcdir)/src/include
2
3 plugindir = $(libdir)/gnunet
4
5 pkgcfgdir= $(pkgdatadir)/config.d/
6
7 libexecdir= $(pkglibdir)/libexec/
8
9 dist_pkgcfg_DATA = \
10   peerstore.conf
11
12 if MINGW
13  WINFLAGS = -Wl,--no-undefined -Wl,--export-all-symbols 
14 endif
15
16 if USE_COVERAGE
17   AM_CFLAGS = -fprofile-arcs -ftest-coverage
18 endif
19
20 bin_PROGRAMS = \
21  gnunet-peerstore 
22
23 libexec_PROGRAMS = \
24  gnunet-service-peerstore
25
26 lib_LTLIBRARIES = \
27  libgnunetpeerstore.la
28
29 gnunet_peerstore_SOURCES = \
30  gnunet-peerstore.c
31 gnunet_peerstore_LDADD = \
32   $(top_builddir)/src/util/libgnunetutil.la \
33   libgnunetpeerstore.la \
34   $(GN_LIBINTL)
35
36 gnunet_service_peerstore_SOURCES = \
37  gnunet-service-peerstore.c \
38  peerstore_common.c
39 gnunet_service_peerstore_CFLAGS = $(AM_CFLAGS)
40 gnunet_service_peerstore_LDADD = \
41   $(top_builddir)/src/util/libgnunetutil.la \
42   $(GN_LIBINTL)
43
44 libgnunetpeerstore_la_SOURCES = \
45   peerstore_api.c \
46   peerstore_common.c
47 libgnunetpeerstore_la_LIBADD = \
48   $(top_builddir)/src/util/libgnunetutil.la
49 libgnunetpeerstore_la_LDFLAGS = \
50   $(GNUNET_LDFLAGS)
51
52 plugin_LTLIBRARIES = \
53   libgnunet_plugin_peerstore_sqlite.la
54   
55 libgnunet_plugin_peerstore_sqlite_la_SOURCES = \
56   plugin_peerstore_sqlite.c
57 libgnunet_plugin_peerstore_sqlite_la_LIBADD = \
58   $(top_builddir)/src/peerstore/libgnunetpeerstore.la  \
59   $(top_builddir)/src/util/libgnunetutil.la $(XLIBS) -lsqlite3 \
60   $(LTLIBINTL)
61 libgnunet_plugin_peerstore_sqlite_la_LDFLAGS = \
62  $(GN_PLUGIN_LDFLAGS)
63 libgnunet_plugin_peerstore_sqlite_la_DEPENDENCIES = \
64   $(top_builddir)/src/util/libgnunetutil.la \
65   libgnunetpeerstore.la
66
67 check_PROGRAMS = \
68  test_peerstore_api
69
70 if ENABLE_TEST_RUN
71 AM_TESTS_ENVIRONMENT=export GNUNET_PREFIX=$${GNUNET_PREFIX:-@libdir@};export PATH=$${GNUNET_PREFIX:-@prefix@}/bin:$$PATH;
72 TESTS = $(check_PROGRAMS)
73 endif
74
75 test_peerstore_api_SOURCES = \
76  test_peerstore_api.c
77 test_peerstore_api_LDADD = \
78   $(top_builddir)/src/peerstore/libgnunetpeerstore.la  \
79   $(top_builddir)/src/testing/libgnunettesting.la \
80   $(top_builddir)/src/util/libgnunetutil.la  
81