fixing mess with search update serialization and parenting
[oweals/gnunet.git] / src / datastore / Makefile.am
1 INCLUDES = -I$(top_srcdir)/src/include
2
3 plugindir = $(libdir)/gnunet
4
5 if MINGW
6   WINFLAGS = -Wl,--no-undefined -Wl,--export-all-symbols
7 endif
8
9 if USE_COVERAGE
10   AM_CFLAGS = --coverage -O0
11   XLIBS = -lgcov
12 endif
13
14
15 lib_LTLIBRARIES = \
16   libgnunetdatastore.la
17
18 libgnunetdatastore_la_SOURCES = \
19   datastore_api.c datastore.h plugin_datastore.h
20 libgnunetdatastore_la_LIBADD = \
21   $(top_builddir)/src/arm/libgnunetarm.la \
22   $(top_builddir)/src/util/libgnunetutil.la \
23   $(GN_LIBINTL) 
24 libgnunetdatastore_la_LDFLAGS = \
25   $(GN_LIB_LDFLAGS) $(WINFLAGS) \
26   -version-info 0:0:0
27
28
29 bin_PROGRAMS = \
30  gnunet-service-datastore
31
32 gnunet_service_datastore_SOURCES = \
33  gnunet-service-datastore.c plugin_datastore.h
34 gnunet_service_datastore_LDADD = \
35   $(top_builddir)/src/arm/libgnunetarm.la \
36   $(top_builddir)/src/statistics/libgnunetstatistics.la \
37   $(top_builddir)/src/util/libgnunetutil.la \
38   $(GN_LIBINTL)
39
40
41 plugin_LTLIBRARIES = \
42   libgnunet_plugin_datastore_sqlite.la \
43   libgnunet_plugin_datastore_template.la 
44
45
46 libgnunet_plugin_datastore_sqlite_la_SOURCES = \
47   plugin_datastore_sqlite.c
48 libgnunet_plugin_datastore_sqlite_la_LIBADD = \
49   $(top_builddir)/src/statistics/libgnunetstatistics.la \
50   $(top_builddir)/src/util/libgnunetutil.la $(XLIBS) -lsqlite3
51 libgnunet_plugin_datastore_sqlite_la_LDFLAGS = \
52  $(GN_PLUGIN_LDFLAGS)
53
54 libgnunet_plugin_datastore_template_la_SOURCES = \
55   plugin_datastore_template.c
56 libgnunet_plugin_datastore_template_la_LIBADD = \
57   $(top_builddir)/src/util/libgnunetutil.la $(XLIBS)
58 libgnunet_plugin_datastore_template_la_LDFLAGS = \
59  $(GN_PLUGIN_LDFLAGS)
60
61
62 check_PROGRAMS = \
63  test_datastore_api \
64  test_datastore_api_management \
65  perf_datastore_api \
66  perf_plugin_datastore
67
68 TESTS = $(check_PROGRAMS)
69
70 test_datastore_api_SOURCES = \
71  test_datastore_api.c
72 test_datastore_api_LDADD = \
73  $(top_builddir)/src/datastore/libgnunetdatastore.la \
74  $(top_builddir)/src/util/libgnunetutil.la  
75
76 test_datastore_api_management_SOURCES = \
77  test_datastore_api_management.c
78 test_datastore_api_management_LDADD = \
79  $(top_builddir)/src/datastore/libgnunetdatastore.la \
80  $(top_builddir)/src/util/libgnunetutil.la  
81
82 perf_datastore_api_SOURCES = \
83  perf_datastore_api.c
84 perf_datastore_api_LDADD = \
85  $(top_builddir)/src/datastore/libgnunetdatastore.la \
86  $(top_builddir)/src/util/libgnunetutil.la  
87
88 perf_plugin_datastore_SOURCES = \
89  perf_plugin_datastore.c
90 perf_plugin_datastore_LDADD = \
91  $(top_builddir)/src/util/libgnunetutil.la  
92
93
94 EXTRA_DIST = \
95  test_datastore_api_data.conf \
96  perf_plugin_datastore_data.conf