aboutsummaryrefslogtreecommitdiff
path: root/src/plugin/datastore/Makefile.am
blob: 1f4ab59c86b4f0cd874d0f8d35b9ad50aecf967f (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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
# This Makefile.am is in the public domain
AM_CPPFLAGS = -I$(top_srcdir)/src/include

plugindir = $(libdir)/gnunet

pkgcfgdir= $(pkgdatadir)/config.d/

libexecdir= $(pkglibdir)/libexec/

sqldir = $(prefix)/share/gnunet/sql/

sql_DATA = \
  datastore-0001.sql \
  datastore-drop.sql

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


if HAVE_SQLITE
 SQLITE_PLUGIN = libgnunet_plugin_datastore_sqlite.la
if HAVE_BENCHMARKS
  SQLITE_BENCHMARKS = \
   perf_plugin_datastore_sqlite
endif
 SQLITE_TESTS = \
  test_plugin_datastore_sqlite \
  $(SQLITE_BENCHMARKS)
endif
if HAVE_POSTGRESQL
 POSTGRES_PLUGIN = libgnunet_plugin_datastore_postgres.la
if HAVE_BENCHMARKS
  POSTGRES_BENCHMARKS = \
   perf_plugin_datastore_postgres
endif
 POSTGRES_TESTS = \
  test_plugin_datastore_postgres \
  $(POSTGRES_BENCHMARKS)
endif

plugin_LTLIBRARIES = \
  $(SQLITE_PLUGIN) \
  $(POSTGRES_PLUGIN) \
  libgnunet_plugin_datastore_heap.la

# Real plugins should of course go into
# plugin_LTLIBRARIES
noinst_LTLIBRARIES = \
  libgnunet_plugin_datastore_template.la


libgnunet_plugin_datastore_sqlite_la_SOURCES = \
  plugin_datastore_sqlite.c
libgnunet_plugin_datastore_sqlite_la_LIBADD = \
  $(top_builddir)/src/lib/sq/libgnunetsq.la \
  $(top_builddir)/src/lib/util/libgnunetutil.la $(XLIBS) -lsqlite3 \
  $(LTLIBINTL)
libgnunet_plugin_datastore_sqlite_la_LDFLAGS = \
 $(GN_PLUGIN_LDFLAGS)


libgnunet_plugin_datastore_heap_la_SOURCES = \
  plugin_datastore_heap.c
libgnunet_plugin_datastore_heap_la_LIBADD = \
  $(top_builddir)/src/lib/util/libgnunetutil.la $(XLIBS) \
  $(LTLIBINTL)
libgnunet_plugin_datastore_heap_la_LDFLAGS = \
 $(GN_PLUGIN_LDFLAGS)


libgnunet_plugin_datastore_postgres_la_SOURCES = \
  plugin_datastore_postgres.c
libgnunet_plugin_datastore_postgres_la_LIBADD = \
  $(top_builddir)/src/lib/pq/libgnunetpq.la \
  $(top_builddir)/src/lib/util/libgnunetutil.la $(XLIBS) -lpq
libgnunet_plugin_datastore_postgres_la_LDFLAGS = \
 $(GN_PLUGIN_LDFLAGS) $(POSTGRESQL_LDFLAGS)
libgnunet_plugin_datastore_postgres_la_CPPFLAGS = \
 $(POSTGRESQL_CPPFLAGS) $(AM_CPPFLAGS)


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

check_PROGRAMS = \
  perf_plugin_datastore_heap \
  test_plugin_datastore_heap \
  $(SQLITE_TESTS) \
  $(POSTGRES_TESTS)

if ENABLE_TEST_RUN
AM_TESTS_ENVIRONMENT=export GNUNET_PREFIX=$${GNUNET_PREFIX:-@libdir@};export PATH=$${GNUNET_PREFIX:-@prefix@}/bin:$$PATH;unset XDG_DATA_HOME;unset XDG_CONFIG_HOME;
TESTS = $(check_PROGRAMS)
endif

perf_plugin_datastore_heap_SOURCES = \
 perf_plugin_datastore.c
perf_plugin_datastore_heap_LDADD = \
 $(top_builddir)/src/service/testing/libgnunettesting.la \
 $(top_builddir)/src/lib/util/libgnunetutil.la

test_plugin_datastore_heap_SOURCES = \
 test_plugin_datastore.c
test_plugin_datastore_heap_LDADD = \
 $(top_builddir)/src/service/testing/libgnunettesting.la \
 $(top_builddir)/src/lib/util/libgnunetutil.la


perf_plugin_datastore_sqlite_SOURCES = \
 perf_plugin_datastore.c
perf_plugin_datastore_sqlite_LDADD = \
 $(top_builddir)/src/service/testing/libgnunettesting.la \
 $(top_builddir)/src/lib/util/libgnunetutil.la

test_plugin_datastore_sqlite_SOURCES = \
 test_plugin_datastore.c
test_plugin_datastore_sqlite_LDADD = \
 $(top_builddir)/src/service/testing/libgnunettesting.la \
 $(top_builddir)/src/lib/util/libgnunetutil.la


test_plugin_datastore_postgres_SOURCES = \
 test_plugin_datastore.c
test_plugin_datastore_postgres_LDADD = \
 $(top_builddir)/src/service/testing/libgnunettesting.la \
 $(top_builddir)/src/lib/util/libgnunetutil.la

perf_plugin_datastore_postgres_SOURCES = \
 perf_plugin_datastore.c
perf_plugin_datastore_postgres_LDADD = \
 $(top_builddir)/src/service/testing/libgnunettesting.la \
 $(top_builddir)/src/lib/util/libgnunetutil.la


EXTRA_DIST = \
 test_defaults.conf \
 perf_plugin_datastore_data_sqlite.conf \
 test_plugin_datastore_data_sqlite.conf \
 perf_plugin_datastore_data_heap.conf \
 test_plugin_datastore_data_heap.conf \
 perf_plugin_datastore_data_postgres.conf \
 test_plugin_datastore_data_postgres.conf \
 $(sql_DATA)