aboutsummaryrefslogtreecommitdiff
path: root/src/sysmon/Makefile.am
blob: 4fed26a3e0eb14645ff387eca40345e4c3531dbd (plain)
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
INCLUDES = -I$(top_srcdir)/src/include

pkgcfgdir= $(pkgdatadir)/config.d/

libexecdir= $(pkglibdir)/libexec/

pkgcfg_DATA = \
  sysmon.conf

if MINGW
 WINFLAGS = -Wl,--no-undefined -Wl,--export-all-symbols 
endif

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

libexec_PROGRAMS = \
 gnunet_daemon_sysmon

gnunet_daemon_sysmon_SOURCES = \
 gnunet-daemon-sysmon.c         
gnunet_daemon_sysmon_LDADD = \
  $(top_builddir)/src/util/libgnunetutil.la \
  $(top_builddir)/src/statistics/libgnunetstatistics.la \
  $(GN_LIBINTL)

if ENABLE_TEST_RUN
TESTS = $(check_PROGRAMS)
endif