aboutsummaryrefslogtreecommitdiff
path: root/src/datastore/Makefile.am
blob: 76d342bbd45065ccd27f0ea8f18ebfad993ba12d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
INCLUDES = -I$(top_srcdir)/src/include

plugindir = $(libdir)/gnunet

if MINGW
  WINFLAGS = -Wl,--no-undefined -Wl,--export-all-symbols
endif

if USE_COVERAGE
  AM_CFLAGS = --coverage -O0
  XLIBS = -lgcov
endif


lib_LTLIBRARIES = \
  libgnunetdatastore.la

libgnunetdatastore_la_SOURCES = \
  datastore_api.c datastore.h plugin_datastore.h
libgnunetdatastore_la_LIBADD = \
  $(top_builddir)/src/util/libgnunetutil.la \
  $(GN_LIBINTL) 
libgnunetdatastore_la_LDFLAGS = \
  $(GN_LIB_LDFLAGS) $(WINFLAGS) \
  -version-info 0:0:0


bin_PROGRAMS = \
 gnunet-service-datastore

gnunet_service_datastore_SOURCES = \
 gnunet-service-datastore.c plugin_datastore.h
gnunet_service_datastore_LDADD = \
  $(top_builddir)/src/statistics/libgnunetstatistics.la \
  $(top_builddir)/src/util/libgnunetutil.la \
  $(GN_LIBINTL)


plugin_LTLIBRARIES = \
  libgnunet_plugin_datastore_sqlite.la \
  libgnunet_plugin_datastore_template.la 


libgnunet_plugin_datastore_sqlite_la_SOURCES = \
  plugin_datastore_sqlite.c
libgnunet_plugin_datastore_sqlite_la_LIBADD = \
  $(top_builddir)/src/statistics/libgnunetstatistics.la \
  $(top_builddir)/src/util/libgnunetutil.la $(XLIBS) -lsqlite3
libgnunet_plugin_datastore_sqlite_la_LDFLAGS = \
 $(GN_PLUGIN_LDFLAGS)

libgnunet_plugin_datastore_template_la_SOURCES = \
  plugin_datastore_template.c
libgnunet_plugin_datastore_template_la_LIBADD = \
  $(top_builddir)/src/util/libgnunetutil.la $(XLIBS)
libgnunet_plugin_datastore_template_la_LDFLAGS = \
 $(GN_PLUGIN_LDFLAGS)


check_PROGRAMS = \
 test_datastore_api \
 test_datastore_api_management \
 perf_datastore_api \
 perf_plugin_datastore

TESTS = $(check_PROGRAMS)

test_datastore_api_SOURCES = \
 test_datastore_api.c
test_datastore_api_LDADD = \
 $(top_builddir)/src/datastore/libgnunetdatastore.la \
 $(top_builddir)/src/util/libgnunetutil.la  

test_datastore_api_management_SOURCES = \
 test_datastore_api_management.c
test_datastore_api_management_LDADD = \
 $(top_builddir)/src/datastore/libgnunetdatastore.la \
 $(top_builddir)/src/util/libgnunetutil.la  

perf_datastore_api_SOURCES = \
 perf_datastore_api.c
perf_datastore_api_LDADD = \
 $(top_builddir)/src/datastore/libgnunetdatastore.la \
 $(top_builddir)/src/util/libgnunetutil.la  

perf_plugin_datastore_SOURCES = \
 perf_plugin_datastore.c
perf_plugin_datastore_LDADD = \
 $(top_builddir)/src/util/libgnunetutil.la  


EXTRA_DIST = \
 test_datastore_api_data.conf \
 perf_plugin_datastore_data.conf