aboutsummaryrefslogtreecommitdiff
path: root/src/datacache
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2015-06-02 08:54:18 +0000
committerChristian Grothoff <christian@grothoff.org>2015-06-02 08:54:18 +0000
commitedb4ddf051d91a2169d46f07b1bfea6df4d216bb (patch)
treee3b1a1095ece34ca21a420a290ad740663ec36a5 /src/datacache
parenta2417d5b3fc632fb1bacca6594c50a0ef7ffd23a (diff)
downloadgnunet-edb4ddf051d91a2169d46f07b1bfea6df4d216bb.tar.gz
gnunet-edb4ddf051d91a2169d46f07b1bfea6df4d216bb.zip
-noinst-ing non-functional binaries/libraries that just exist as examples/templates
Diffstat (limited to 'src/datacache')
-rw-r--r--src/datacache/Makefile.am32
1 files changed, 18 insertions, 14 deletions
diff --git a/src/datacache/Makefile.am b/src/datacache/Makefile.am
index 0219ecc12..9b66636e5 100644
--- a/src/datacache/Makefile.am
+++ b/src/datacache/Makefile.am
@@ -28,11 +28,11 @@ lib_LTLIBRARIES = \
28 libgnunetdatacache.la 28 libgnunetdatacache.la
29 29
30libgnunetdatacache_la_SOURCES = \ 30libgnunetdatacache_la_SOURCES = \
31 datacache.c 31 datacache.c
32libgnunetdatacache_la_LIBADD = \ 32libgnunetdatacache_la_LIBADD = \
33 $(top_builddir)/src/statistics/libgnunetstatistics.la \ 33 $(top_builddir)/src/statistics/libgnunetstatistics.la \
34 $(top_builddir)/src/util/libgnunetutil.la \ 34 $(top_builddir)/src/util/libgnunetutil.la \
35 $(GN_LIBINTL) 35 $(GN_LIBINTL)
36libgnunetdatacache_la_LDFLAGS = \ 36libgnunetdatacache_la_LDFLAGS = \
37 $(GN_LIB_LDFLAGS) $(WINFLAGS) \ 37 $(GN_LIB_LDFLAGS) $(WINFLAGS) \
38 -version-info 0:1:0 38 -version-info 0:1:0
@@ -41,8 +41,12 @@ libgnunetdatacache_la_LDFLAGS = \
41plugin_LTLIBRARIES = \ 41plugin_LTLIBRARIES = \
42 $(SQLITE_PLUGIN) \ 42 $(SQLITE_PLUGIN) \
43 $(POSTGRES_PLUGIN) \ 43 $(POSTGRES_PLUGIN) \
44 libgnunet_plugin_datacache_heap.la \ 44 libgnunet_plugin_datacache_heap.la
45 libgnunet_plugin_datacache_template.la 45
46# Real plugins should of course go into
47# plugin_LTLIBRARIES
48noinst_LTLIBRARIES = \
49 libgnunet_plugin_datacache_template.la
46 50
47 51
48libgnunet_plugin_datacache_sqlite_la_SOURCES = \ 52libgnunet_plugin_datacache_sqlite_la_SOURCES = \
@@ -120,7 +124,7 @@ endif
120check_PROGRAMS = \ 124check_PROGRAMS = \
121 $(SQLITE_TESTS) \ 125 $(SQLITE_TESTS) \
122 $(HEAP_TESTS) \ 126 $(HEAP_TESTS) \
123 $(POSTGRES_TESTS) 127 $(POSTGRES_TESTS)
124 128
125if ENABLE_TEST_RUN 129if ENABLE_TEST_RUN
126AM_TESTS_ENVIRONMENT=export GNUNET_PREFIX=$${GNUNET_PREFIX:-@libdir@};export PATH=$${GNUNET_PREFIX:-@prefix@}/bin:$$PATH; 130AM_TESTS_ENVIRONMENT=export GNUNET_PREFIX=$${GNUNET_PREFIX:-@libdir@};export PATH=$${GNUNET_PREFIX:-@prefix@}/bin:$$PATH;
@@ -132,63 +136,63 @@ test_datacache_sqlite_SOURCES = \
132test_datacache_sqlite_LDADD = \ 136test_datacache_sqlite_LDADD = \
133 $(top_builddir)/src/testing/libgnunettesting.la \ 137 $(top_builddir)/src/testing/libgnunettesting.la \
134 libgnunetdatacache.la \ 138 libgnunetdatacache.la \
135 $(top_builddir)/src/util/libgnunetutil.la 139 $(top_builddir)/src/util/libgnunetutil.la
136 140
137test_datacache_quota_sqlite_SOURCES = \ 141test_datacache_quota_sqlite_SOURCES = \
138 test_datacache_quota.c 142 test_datacache_quota.c
139test_datacache_quota_sqlite_LDADD = \ 143test_datacache_quota_sqlite_LDADD = \
140 $(top_builddir)/src/testing/libgnunettesting.la \ 144 $(top_builddir)/src/testing/libgnunettesting.la \
141 libgnunetdatacache.la \ 145 libgnunetdatacache.la \
142 $(top_builddir)/src/util/libgnunetutil.la 146 $(top_builddir)/src/util/libgnunetutil.la
143 147
144perf_datacache_sqlite_SOURCES = \ 148perf_datacache_sqlite_SOURCES = \
145 perf_datacache.c 149 perf_datacache.c
146perf_datacache_sqlite_LDADD = \ 150perf_datacache_sqlite_LDADD = \
147 $(top_builddir)/src/testing/libgnunettesting.la \ 151 $(top_builddir)/src/testing/libgnunettesting.la \
148 libgnunetdatacache.la \ 152 libgnunetdatacache.la \
149 $(top_builddir)/src/util/libgnunetutil.la 153 $(top_builddir)/src/util/libgnunetutil.la
150 154
151test_datacache_heap_SOURCES = \ 155test_datacache_heap_SOURCES = \
152 test_datacache.c 156 test_datacache.c
153test_datacache_heap_LDADD = \ 157test_datacache_heap_LDADD = \
154 $(top_builddir)/src/testing/libgnunettesting.la \ 158 $(top_builddir)/src/testing/libgnunettesting.la \
155 libgnunetdatacache.la \ 159 libgnunetdatacache.la \
156 $(top_builddir)/src/util/libgnunetutil.la 160 $(top_builddir)/src/util/libgnunetutil.la
157 161
158test_datacache_quota_heap_SOURCES = \ 162test_datacache_quota_heap_SOURCES = \
159 test_datacache_quota.c 163 test_datacache_quota.c
160test_datacache_quota_heap_LDADD = \ 164test_datacache_quota_heap_LDADD = \
161 $(top_builddir)/src/testing/libgnunettesting.la \ 165 $(top_builddir)/src/testing/libgnunettesting.la \
162 libgnunetdatacache.la \ 166 libgnunetdatacache.la \
163 $(top_builddir)/src/util/libgnunetutil.la 167 $(top_builddir)/src/util/libgnunetutil.la
164 168
165perf_datacache_heap_SOURCES = \ 169perf_datacache_heap_SOURCES = \
166 perf_datacache.c 170 perf_datacache.c
167perf_datacache_heap_LDADD = \ 171perf_datacache_heap_LDADD = \
168 $(top_builddir)/src/testing/libgnunettesting.la \ 172 $(top_builddir)/src/testing/libgnunettesting.la \
169 libgnunetdatacache.la \ 173 libgnunetdatacache.la \
170 $(top_builddir)/src/util/libgnunetutil.la 174 $(top_builddir)/src/util/libgnunetutil.la
171 175
172test_datacache_postgres_SOURCES = \ 176test_datacache_postgres_SOURCES = \
173 test_datacache.c 177 test_datacache.c
174test_datacache_postgres_LDADD = \ 178test_datacache_postgres_LDADD = \
175 $(top_builddir)/src/testing/libgnunettesting.la \ 179 $(top_builddir)/src/testing/libgnunettesting.la \
176 libgnunetdatacache.la \ 180 libgnunetdatacache.la \
177 $(top_builddir)/src/util/libgnunetutil.la 181 $(top_builddir)/src/util/libgnunetutil.la
178 182
179test_datacache_quota_postgres_SOURCES = \ 183test_datacache_quota_postgres_SOURCES = \
180 test_datacache_quota.c 184 test_datacache_quota.c
181test_datacache_quota_postgres_LDADD = \ 185test_datacache_quota_postgres_LDADD = \
182 $(top_builddir)/src/testing/libgnunettesting.la \ 186 $(top_builddir)/src/testing/libgnunettesting.la \
183 libgnunetdatacache.la \ 187 libgnunetdatacache.la \
184 $(top_builddir)/src/util/libgnunetutil.la 188 $(top_builddir)/src/util/libgnunetutil.la
185 189
186perf_datacache_postgres_SOURCES = \ 190perf_datacache_postgres_SOURCES = \
187 perf_datacache.c 191 perf_datacache.c
188perf_datacache_postgres_LDADD = \ 192perf_datacache_postgres_LDADD = \
189 $(top_builddir)/src/testing/libgnunettesting.la \ 193 $(top_builddir)/src/testing/libgnunettesting.la \
190 libgnunetdatacache.la \ 194 libgnunetdatacache.la \
191 $(top_builddir)/src/util/libgnunetutil.la 195 $(top_builddir)/src/util/libgnunetutil.la
192 196
193EXTRA_DIST = \ 197EXTRA_DIST = \
194 test_datacache_data_sqlite.conf \ 198 test_datacache_data_sqlite.conf \