aboutsummaryrefslogtreecommitdiff
path: root/src/cli/namestore/Makefile.am
blob: b666c88513a0c320f9ea9ce5f76991f6003c567b (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
# This Makefile.am is in the public domain
AM_CPPFLAGS = -I$(top_srcdir)/src/include $(POSTGRESQL_CPPFLAGS)

plugindir = $(libdir)/gnunet

pkgcfgdir= $(pkgdatadir)/config.d/

libexecdir= $(pkglibdir)/libexec/

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

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


bin_PROGRAMS = \
 gnunet-namestore \
 gnunet-namestore-dbtool \
 gnunet-namestore-zonefile \
 gnunet-zoneimport

gnunet_namestore_zonefile_SOURCES = \
 gnunet-namestore-zonefile.c
gnunet_namestore_zonefile_LDADD = \
  $(top_builddir)/src/service/namestore/libgnunetnamestore.la \
  $(top_builddir)/src/service/identity/libgnunetidentity.la \
  $(top_builddir)/src/lib/gnsrecord/libgnunetgnsrecord.la  \
  $(top_builddir)/src/lib/util/libgnunetutil.la \
  $(GN_LIBINTL)

gnunet_zoneimport_SOURCES = \
 gnunet-zoneimport.c
gnunet_zoneimport_LDADD = \
  $(top_builddir)/src/service/namestore/libgnunetnamestore.la \
  $(top_builddir)/src/service/statistics/libgnunetstatistics.la \
  $(top_builddir)/src/service/identity/libgnunetidentity.la \
  $(top_builddir)/src/lib/gnsrecord/libgnunetgnsrecord.la \
  $(top_builddir)/src/lib/util/libgnunetutil.la \
  $(GN_LIBINTL)

gnunet_namestore_SOURCES = \
 gnunet-namestore.c
gnunet_namestore_LDADD = \
  $(top_builddir)/src/service/identity/libgnunetidentity.la \
  $(top_builddir)/src/lib/gnsrecord/libgnunetgnsrecord.la \
  $(top_builddir)/src/lib/util/libgnunetutil.la \
  $(top_builddir)/src/service/namestore/libgnunetnamestore.la \
  $(GN_LIBINTL)

gnunet_namestore_dbtool_SOURCES = \
 gnunet-namestore-dbtool.c
gnunet_namestore_dbtool_LDADD = \
  $(top_builddir)/src/lib/util/libgnunetutil.la \
  $(top_builddir)/src/service/namestore/libgnunetnamestore.la \
  $(GN_LIBINTL)



check_SCRIPTS = \
  test_namestore_put.sh \
  test_namestore_put_stdin.sh \
  test_namestore_lookup.sh \
  test_namestore_delete.sh \
  test_namestore_zonefile_import.sh

EXTRA_DIST = \
  example_zonefile \
  $(check_SCRIPTS)