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

plugindir = $(libdir)/gnunet

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

bin_PROGRAMS = \
	gnunet-did

gnunet_did_SOURCES = \
	gnunet-did.c
gnunet_did_LDADD = \
	$(top_builddir)/src/util/libgnunetutil.la \
	$(top_builddir)/src/gns/libgnunetgns.la \
	$(top_builddir)/src/gnsrecord/libgnunetgnsrecord.la \
	$(top_builddir)/src/identity/libgnunetidentity.la \
	$(top_builddir)/src/namestore/libgnunetnamestore.la \
  	-ljansson


check_PROGRAMS = \
  test_w3c_ed25519_2020

test_w3c_ed25519_2020_SOURCES = \
  test_w3c_ed25519_2020.c
test_w3c_ed25519_2020_LDADD = \
  $(top_builddir)/src/util/libgnunetutil.la

if ENABLE_TEST_RUN
TESTS = $(check_PROGRAMS)
endif