really make GNUNET_SCHEDULER_run_from_driver more graceful (must have been late)
[oweals/gnunet.git] / src / ats-tool / Makefile.am
1 # This Makefile.am is in the public domain
2 AM_CPPFLAGS = -I$(top_srcdir)/src/include
3
4 if MINGW
5  WINFLAGS = -Wl,--no-undefined -Wl,--export-all-symbols 
6 endif
7
8 if USE_COVERAGE
9   AM_CFLAGS = -fprofile-arcs -ftest-coverage
10 endif
11
12 bin_PROGRAMS = \
13  gnunet-ats 
14
15 gnunet_ats_SOURCES = \
16  gnunet-ats.c 
17 gnunet_ats_LDADD = \
18   $(top_builddir)/src/util/libgnunetutil.la \
19   $(top_builddir)/src/ats/libgnunetats.la \
20   $(top_builddir)/src/transport/libgnunettransport.la \
21   $(top_builddir)/src/hello/libgnunethello.la \
22   $(GN_LIBINTL)