- moved timeout handling responsibility from for nat tests from caller to the library
[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_store \
69  test_peerstore_api_iterate \
70  test_peerstore_api_watch \
71  test_peerstore_stress_store
72
73 if ENABLE_TEST_RUN
74 AM_TESTS_ENVIRONMENT=export GNUNET_PREFIX=$${GNUNET_PREFIX:-@libdir@};export PATH=$${GNUNET_PREFIX:-@prefix@}/bin:$$PATH;
75 TESTS = $(check_PROGRAMS)
76 endif
77
78 test_peerstore_api_store_SOURCES = \
79  test_peerstore_api_store.c
80 test_peerstore_api_store_LDADD = \
81   $(top_builddir)/src/peerstore/libgnunetpeerstore.la  \
82   $(top_builddir)/src/testing/libgnunettesting.la \
83   $(top_builddir)/src/util/libgnunetutil.la
84
85 test_peerstore_api_iterate_SOURCES = \
86  test_peerstore_api_iterate.c
87 test_peerstore_api_iterate_LDADD = \
88   $(top_builddir)/src/peerstore/libgnunetpeerstore.la  \
89   $(top_builddir)/src/testing/libgnunettesting.la \
90   $(top_builddir)/src/util/libgnunetutil.la
91
92 test_peerstore_api_watch_SOURCES = \
93  test_peerstore_api_watch.c
94 test_peerstore_api_watch_LDADD = \
95   $(top_builddir)/src/peerstore/libgnunetpeerstore.la  \
96   $(top_builddir)/src/testing/libgnunettesting.la \
97   $(top_builddir)/src/util/libgnunetutil.la
98
99 test_peerstore_stress_store_SOURCES = \
100  test_peerstore_stress_store.c
101 test_peerstore_stress_store_LDADD = \
102   $(top_builddir)/src/peerstore/libgnunetpeerstore.la  \
103   $(top_builddir)/src/testing/libgnunettesting.la \
104   $(top_builddir)/src/util/libgnunetutil.la