merge
[oweals/gnunet.git] / src / zonemaster / Makefile.am
1 # This Makefile.am is in the public domain
2 AM_CPPFLAGS = -I$(top_srcdir)/src/include 
3
4 plugindir = $(libdir)/gnunet
5
6 pkgcfgdir= $(pkgdatadir)/config.d/
7
8 libexecdir= $(pkglibdir)/libexec/
9
10 pkgcfg_DATA = \
11    zonemaster.conf
12
13 if MINGW
14   WINFLAGS = -Wl,--no-undefined -Wl,--export-all-symbols
15 endif
16
17 if USE_COVERAGE
18   AM_CFLAGS = --coverage -O0
19   XLIBS = -lgcov
20 endif
21
22 libexec_PROGRAMS = \
23  gnunet-service-zonemaster
24
25 gnunet_service_zonemaster_SOURCES = \
26  gnunet-service-zonemaster.c
27
28 gnunet_service_zonemaster_LDADD = \
29   $(top_builddir)/src/dht/libgnunetdht.la \
30   $(top_builddir)/src/gnsrecord/libgnunetgnsrecord.la \
31   $(top_builddir)/src/statistics/libgnunetstatistics.la \
32   $(top_builddir)/src/util/libgnunetutil.la \
33   $(top_builddir)/src/namestore/libgnunetnamestore.la \
34   $(GN_LIBINTL)
35