- LRN's patch 2191
[oweals/gnunet.git] / src / namestore / Makefile.am
1 INCLUDES = -I$(top_srcdir)/src/include
2
3 plugindir = $(libdir)/gnunet
4
5 pkgcfgdir= $(pkgdatadir)/config.d/
6
7 pkgcfg_DATA = \
8    namestore.conf
9
10
11 if MINGW
12   WINFLAGS = -Wl,--no-undefined -Wl,--export-all-symbols
13 endif
14
15 if USE_COVERAGE
16   AM_CFLAGS = --coverage -O0
17   XLIBS = -lgcov
18 endif
19
20 if HAVE_SQLITE
21 SQLITE_TESTS = \
22  test_plugin_namestore_sqlite 
23 endif
24
25
26 check_PROGRAMS = \
27  $(SQLITE_TESTS) \
28  test_namestore_api_sign_verify \
29  test_namestore_api \
30  test_namestore_api_put \
31  test_namestore_api_lookup \
32  test_namestore_api_create \
33  test_namestore_api_remove \
34  test_namestore_api_remove_not_existing_record \
35  test_namestore_api_zone_iteration \
36  test_namestore_record_serialization
37
38 if ENABLE_TEST_RUN
39 TESTS = $(check_PROGRAMS)
40 endif
41
42 lib_LTLIBRARIES = \
43   libgnunetnamestore.la
44
45 libgnunetnamestore_la_SOURCES = \
46   namestore_api.c namestore_common.c namestore.h
47 libgnunetnamestore_la_LIBADD = \
48   $(top_builddir)/src/statistics/libgnunetstatistics.la \
49   $(top_builddir)/src/util/libgnunetutil.la \
50   $(GN_LIBINTL) 
51 libgnunetnamestore_la_LDFLAGS = \
52   $(GN_LIB_LDFLAGS) $(WINFLAGS) \
53   -version-info 0:0:0
54
55 bin_PROGRAMS = \
56  gnunet-service-namestore
57
58 gnunet_service_namestore_SOURCES = \
59  gnunet-service-namestore.c
60
61 gnunet_service_namestore_LDADD = \
62   $(top_builddir)/src/namestore/libgnunetnamestore.la  \
63   $(top_builddir)/src/statistics/libgnunetstatistics.la \
64   $(top_builddir)/src/util/libgnunetutil.la \
65   libgnunetnamestore.la \
66   $(GN_LIBINTL)
67
68 if HAVE_SQLITE
69  SQLITE_PLUGIN = libgnunet_plugin_namestore_sqlite.la
70 endif
71
72 plugin_LTLIBRARIES = \
73   $(SQLITE_PLUGIN) 
74
75 libgnunet_plugin_namestore_sqlite_la_SOURCES = \
76   plugin_namestore_sqlite.c
77 libgnunet_plugin_namestore_sqlite_la_LIBADD = \
78   $(top_builddir)/src/namestore/libgnunetnamestore.la  \
79   $(top_builddir)/src/statistics/libgnunetstatistics.la \
80   $(top_builddir)/src/util/libgnunetutil.la $(XLIBS) -lsqlite3
81 libgnunet_plugin_namestore_sqlite_la_LDFLAGS = \
82  $(GN_PLUGIN_LDFLAGS)
83
84 test_namestore_api_sign_verify_SOURCES = \
85  test_namestore_api_sign_verify.c
86 test_namestore_api_sign_verify_LDADD = \
87   $(top_builddir)/src/util/libgnunetutil.la \
88   $(top_builddir)/src/namestore/libgnunetnamestore.la
89
90 test_namestore_api_SOURCES = \
91  test_namestore_api.c
92 test_namestore_api_LDADD = \
93   $(top_builddir)/src/util/libgnunetutil.la \
94   $(top_builddir)/src/namestore/libgnunetnamestore.la
95
96 test_namestore_api_put_SOURCES = \
97  test_namestore_api_put.c
98 test_namestore_api_put_LDADD = \
99   $(top_builddir)/src/util/libgnunetutil.la \
100   $(top_builddir)/src/namestore/libgnunetnamestore.la
101
102 test_namestore_api_lookup_SOURCES = \
103  test_namestore_api_lookup.c
104 test_namestore_api_lookup_LDADD = \
105   $(top_builddir)/src/util/libgnunetutil.la \
106   $(top_builddir)/src/namestore/libgnunetnamestore.la
107
108 test_namestore_api_create_SOURCES = \
109  test_namestore_api_create.c
110 test_namestore_api_create_LDADD = \
111   $(top_builddir)/src/util/libgnunetutil.la \
112   $(top_builddir)/src/namestore/libgnunetnamestore.la
113
114 test_namestore_api_remove_SOURCES = \
115  test_namestore_api_remove.c
116 test_namestore_api_remove_LDADD = \
117   $(top_builddir)/src/util/libgnunetutil.la \
118   $(top_builddir)/src/namestore/libgnunetnamestore.la
119
120 test_namestore_api_remove_not_existing_record_SOURCES = \
121  test_namestore_api_remove_not_existing_record.c
122 test_namestore_api_remove_not_existing_record_LDADD = \
123   $(top_builddir)/src/util/libgnunetutil.la \
124   $(top_builddir)/src/namestore/libgnunetnamestore.la
125
126 test_namestore_api_zone_iteration_SOURCES = \
127  test_namestore_api_zone_iteration.c
128 test_namestore_api_zone_iteration_LDADD = \
129   $(top_builddir)/src/util/libgnunetutil.la \
130   $(top_builddir)/src/namestore/libgnunetnamestore.la  
131
132 test_namestore_record_serialization_SOURCES = \
133  test_namestore_record_serialization.c
134 test_namestore_record_serialization_LDADD = \
135   $(top_builddir)/src/util/libgnunetutil.la \
136   $(top_builddir)/src/namestore/libgnunetnamestore.la  
137
138 EXTRA_DIST = \
139   test_namestore_api.conf \
140   test_plugin_namestore_sqlite.conf\
141   hostkey
142
143
144 test_plugin_namestore_sqlite_SOURCES = \
145  test_plugin_namestore.c
146 test_plugin_namestore_sqlite_LDADD = \
147  $(top_builddir)/src/util/libgnunetutil.la