rename, fix
[oweals/gnunet.git] / src / exit / Makefile.am
1 # This Makefile.am is in the public domain
2 AM_CPPFLAGS = -I$(top_srcdir)/src/include
3
4 if USE_COVERAGE
5   AM_CFLAGS = --coverage -O0
6 endif
7
8 pkgcfgdir= $(pkgdatadir)/config.d/
9
10 libexecdir= $(pkglibdir)/libexec/
11
12 plugindir = $(libdir)/gnunet
13
14 dist_pkgcfg_DATA = \
15   exit.conf
16
17 if LINUX
18 EXITBIN = gnunet-helper-exit
19 endif
20
21
22 libexec_PROGRAMS = \
23   gnunet-daemon-exit \
24   $(EXITBIN)
25
26
27 gnunet_helper_exit_SOURCES = \
28   gnunet-helper-exit.c
29
30 gnunet_daemon_exit_SOURCES = \
31  gnunet-daemon-exit.c exit.h
32 gnunet_daemon_exit_LDADD = \
33   $(top_builddir)/src/dht/libgnunetdht.la \
34   $(top_builddir)/src/statistics/libgnunetstatistics.la \
35   $(top_builddir)/src/util/libgnunetutil.la \
36   $(top_builddir)/src/cadet/libgnunetcadet.la \
37   $(top_builddir)/src/regex/libgnunetregex.la \
38   $(GN_LIBINTL)