aboutsummaryrefslogtreecommitdiff
path: root/src/namestore/Makefile.am
blob: f3211d6a01db71c840ec1ca9bf0d0428dc145f1f (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
INCLUDES = -I$(top_srcdir)/src/include

plugindir = $(libdir)/gnunet

pkgcfgdir= $(pkgnamedir)/config.d/

pkgcfg_NAME = \
  namestore.conf

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

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

if HAVE_SQLITE
SQLITE_TESTS = \
 test_plugin_namestore_sqlite 
endif


check_PROGRAMS = \
 $(SQLITE_TESTS) 

if HAVE_EXPERIMENTAL
check_PROGRAMS += test_namestore_api
endif

lib_LTLIBRARIES = \
  libgnunetnamestore.la

libgnunetnamestore_la_SOURCES = \
  namestore_api.c namestore.h 
libgnunetnamestore_la_LIBADD = \
  $(top_builddir)/src/statistics/libgnunetstatistics.la \
  $(top_builddir)/src/util/libgnunetutil.la \
  $(GN_LIBINTL) 
libgnunetnamestore_la_LDFLAGS = \
  $(GN_LIB_LDFLAGS) $(WINFLAGS) \
  -version-info 0:0:0

bin_PROGRAMS = \
 gnunet-service-namestore

gnunet_service_namestore_SOURCES = \
 gnunet-service-namestore.c 
gnunet_service_namestore_LDADD = \
  $(top_builddir)/src/statistics/libgnunetstatistics.la \
  $(top_builddir)/src/util/libgnunetutil.la \
  $(GN_LIBINTL)

if HAVE_SQLITE
 SQLITE_PLUGIN = libgnunet_plugin_namestore_sqlite.la
endif

plugin_LTLIBRARIES = \
  $(SQLITE_PLUGIN) 

libgnunet_plugin_namestore_sqlite_la_SOURCES = \
  plugin_namestore_sqlite.c
libgnunet_plugin_namestore_sqlite_la_LIBADD = \
  $(top_builddir)/src/statistics/libgnunetstatistics.la \
  $(top_builddir)/src/util/libgnunetutil.la $(XLIBS) -lsqlite3
libgnunet_plugin_namestore_sqlite_la_LDFLAGS = \
 $(GN_PLUGIN_LDFLAGS)


test_namestore_api_SOURCES = \
 test_namestore_api.c
test_namestore_api_LDADD = \
  $(top_builddir)/src/util/libgnunetutil.la \
  $(top_builddir)/src/namestore/libgnunetnamestore.la

EXTRADIST = \
  test_namestore_api.conf \
  test_plugin_namestore_sqlite.conf \
  hostkey


test_plugin_namestore_sqlite_SOURCES = \
 test_plugin_namestore.c
test_plugin_namestore_sqlite_LDADD = \
 $(top_builddir)/src/util/libgnunetutil.la