remove CYGWIN codeblocks, drop vendored Windows openvpn, drop win32 specific files.
[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 install-exec-hook:
20         $(top_srcdir)/src/exit/install-exit-helper.sh $(DESTDIR)$(libexecdir) $(SUDO_BINARY) || true
21 else
22 install-exec-hook:
23 endif
24
25
26 libexec_PROGRAMS = \
27   gnunet-daemon-exit \
28   $(EXITBIN)
29
30
31 gnunet_helper_exit_SOURCES = \
32   gnunet-helper-exit.c
33
34 gnunet_daemon_exit_SOURCES = \
35  gnunet-daemon-exit.c exit.h
36 gnunet_daemon_exit_LDADD = \
37   $(top_builddir)/src/dht/libgnunetdht.la \
38   $(top_builddir)/src/statistics/libgnunetstatistics.la \
39   $(top_builddir)/src/util/libgnunetutil.la \
40   $(top_builddir)/src/cadet/libgnunetcadet.la \
41   $(top_builddir)/src/regex/libgnunetregex.la \
42   $(GN_LIBINTL)