aboutsummaryrefslogtreecommitdiff
path: root/src/gnsrecord/Makefile.am
blob: 2e6eca7bae22a3dad1717f396c0ed2f210ca8593 (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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
# This Makefile.am is in the public domain
AM_CPPFLAGS = -I$(top_srcdir)/src/include

plugindir = $(libdir)/gnunet

pkgcfgdir= $(pkgdatadir)/config.d/

libexecdir= $(pkglibdir)/libexec/

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

bin_PROGRAMS = \
  gnunet-gnsrecord-tvg


check_PROGRAMS = \
 test_gnsrecord_crypto \
 test_gnsrecord_serialization \
 test_gnsrecord_block_expiration \
 perf_gnsrecord_crypto

if ENABLE_TEST_RUN
AM_TESTS_ENVIRONMENT=export GNUNET_PREFIX=$${GNUNET_PREFIX:-@libdir@};export PATH=$${GNUNET_PREFIX:-@prefix@}/bin:$$PATH;unset XDG_DATA_HOME;unset XDG_CONFIG_HOME;
TESTS = \
  $(check_PROGRAMS) \
  $(check_SCRIPTS)
endif

lib_LTLIBRARIES = \
  libgnunetgnsrecord.la

gnunet_gnsrecord_tvg_SOURCES = \
 gnunet-gnsrecord-tvg.c
gnunet_gnsrecord_tvg_LDADD = \
  $(top_builddir)/src/util/libgnunetutil.la \
  libgnunetgnsrecord.la \
  $(GN_LIBINTL)


libgnunetgnsrecord_la_SOURCES = \
  gnsrecord.c \
  gnsrecord_serialization.c \
  gnsrecord_crypto.c \
  gnsrecord_misc.c
libgnunetgnsrecord_la_LIBADD = \
  $(top_builddir)/src/util/libgnunetutil.la \
  $(GN_LIBINTL)
libgnunetgnsrecord_la_LDFLAGS = \
  $(GN_LIB_LDFLAGS)  \
  -version-info 0:0:0


plugin_LTLIBRARIES = \
  libgnunet_plugin_gnsrecord_dns.la


libgnunet_plugin_gnsrecord_dns_la_SOURCES = \
  plugin_gnsrecord_dns.c
libgnunet_plugin_gnsrecord_dns_la_LIBADD = \
  $(top_builddir)/src/util/libgnunetutil.la \
  $(LTLIBINTL)
libgnunet_plugin_gnsrecord_dns_la_LDFLAGS = \
 $(GN_PLUGIN_LDFLAGS)


EXTRA_DIST = \
  $(check_SCRIPTS)


test_gnsrecord_serialization_SOURCES = \
 test_gnsrecord_serialization.c
test_gnsrecord_serialization_LDADD = \
  $(top_builddir)/src/testing/libgnunettesting.la \
  libgnunetgnsrecord.la \
  $(top_builddir)/src/util/libgnunetutil.la

test_gnsrecord_block_expiration_SOURCES = \
 test_gnsrecord_block_expiration.c
test_gnsrecord_block_expiration_LDADD = \
  $(top_builddir)/src/testing/libgnunettesting.la \
  libgnunetgnsrecord.la \
  $(top_builddir)/src/util/libgnunetutil.la


test_gnsrecord_crypto_SOURCES = \
 test_gnsrecord_crypto.c
test_gnsrecord_crypto_LDADD = \
  $(top_builddir)/src/testing/libgnunettesting.la \
  libgnunetgnsrecord.la \
  $(top_builddir)/src/util/libgnunetutil.la


perf_gnsrecord_crypto_SOURCES = \
 perf_gnsrecord_crypto.c
perf_gnsrecord_crypto_LDADD = \
  $(top_builddir)/src/testing/libgnunettesting.la \
  libgnunetgnsrecord.la \
  $(top_builddir)/src/util/libgnunetutil.la