aboutsummaryrefslogtreecommitdiff
path: root/src/ats-tool/Makefile.am
blob: 3bb99aa08f2d9594051c1169a13beb27c5245fcd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# This Makefile.am is in the public domain
AM_CPPFLAGS = -I$(top_srcdir)/src/include

if USE_COVERAGE
  AM_CFLAGS = -fprofile-arcs -ftest-coverage
endif

bin_PROGRAMS = \
 gnunet-ats

gnunet_ats_SOURCES = \
 gnunet-ats.c
gnunet_ats_LDADD = \
  $(top_builddir)/src/util/libgnunetutil.la \
  $(top_builddir)/src/ats/libgnunetats.la \
  $(top_builddir)/src/nt/libgnunetnt.la \
  $(top_builddir)/src/transport/libgnunettransport.la \
  $(top_builddir)/src/hello/libgnunethello.la \
  $(GN_LIBINTL)