aboutsummaryrefslogtreecommitdiff
path: root/src/peerstore/Makefile.am
diff options
context:
space:
mode:
authorOmar Tarabai <tarabai@devegypt.com>2014-04-27 17:45:49 +0000
committerOmar Tarabai <tarabai@devegypt.com>2014-04-27 17:45:49 +0000
commit4637bb9965f3b945426d888f353e566da75ee32a (patch)
tree0badc91a8493a35ac1c360d32b7818a4ee06b360 /src/peerstore/Makefile.am
parentf5961cc463e301090c16577f2f0cb28ca614d734 (diff)
downloadgnunet-4637bb9965f3b945426d888f353e566da75ee32a.tar.gz
gnunet-4637bb9965f3b945426d888f353e566da75ee32a.zip
towards PEERSTORE sqlite plugin
Diffstat (limited to 'src/peerstore/Makefile.am')
-rw-r--r--src/peerstore/Makefile.am14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/peerstore/Makefile.am b/src/peerstore/Makefile.am
index 821700b5a..40072836c 100644
--- a/src/peerstore/Makefile.am
+++ b/src/peerstore/Makefile.am
@@ -47,17 +47,17 @@ libgnunetpeerstore_la_LDFLAGS = \
47 $(GNUNET_LDFLAGS) 47 $(GNUNET_LDFLAGS)
48 48
49plugin_LTLIBRARIES = \ 49plugin_LTLIBRARIES = \
50 libgnunet_plugin_peerstore_file.la 50 libgnunet_plugin_peerstore_sqlite.la
51 51
52libgnunet_plugin_peerstore_file_la_SOURCES = \ 52libgnunet_plugin_peerstore_sqlite_la_SOURCES = \
53 plugin_peerstore_file.c 53 plugin_peerstore_sqlite.c
54libgnunet_plugin_peerstore_file_la_LIBADD = \ 54libgnunet_plugin_peerstore_sqlite_la_LIBADD = \
55 $(top_builddir)/src/peerstore/libgnunetpeerstore.la \ 55 $(top_builddir)/src/peerstore/libgnunetpeerstore.la \
56 $(top_builddir)/src/util/libgnunetutil.la \ 56 $(top_builddir)/src/util/libgnunetutil.la $(XLIBS) -lsqlite3 \
57 $(LTLIBINTL) 57 $(LTLIBINTL)
58libgnunet_plugin_peerstore_file_la_LDFLAGS = \ 58libgnunet_plugin_peerstore_sqlite_la_LDFLAGS = \
59 $(GN_PLUGIN_LDFLAGS) 59 $(GN_PLUGIN_LDFLAGS)
60libgnunet_plugin_peerstore_file_la_DEPENDENCIES = \ 60libgnunet_plugin_peerstore_sqlite_la_DEPENDENCIES = \
61 $(top_builddir)/src/util/libgnunetutil.la \ 61 $(top_builddir)/src/util/libgnunetutil.la \
62 libgnunetpeerstore.la 62 libgnunetpeerstore.la
63 63