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

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

lib_LTLIBRARIES = libgnunethello.la

libgnunethello_la_SOURCES = \
  hello.c \
  address.c \
  hello-ng.c
libgnunethello_la_LIBADD = \
 $(top_builddir)/src/util/libgnunetutil.la $(XLIB) \
 $(LTLIBINTL)
libgnunethello_la_LDFLAGS = \
  $(GN_LIB_LDFLAGS) \
  -version-info 1:0:1

noinst_PROGRAMS = \
 gnunet-hello

check_PROGRAMS = \
 test_hello \
 test_friend_hello

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)
endif

test_hello_SOURCES = \
 test_hello.c
test_hello_LDADD = \
 libgnunethello.la \
 $(top_builddir)/src/util/libgnunetutil.la  

test_friend_hello_SOURCES = \
 test_friend_hello.c
test_friend_hello_LDADD = \
 libgnunethello.la \
 $(top_builddir)/src/util/libgnunetutil.la  

gnunet_hello_SOURCES = \
 gnunet-hello.c
gnunet_hello_LDADD = \
 libgnunethello.la \
 $(top_builddir)/src/util/libgnunetutil.la  
gnunet_hello_LDFLAGS = \
  $(GN_LIBINTL)