d8c2cd1c1d30b4316954b6c21d207c03916e0cdf
[oweals/gnunet.git] / src / dns / Makefile.am
1 INCLUDES = -I$(top_srcdir)/src/include
2
3 if MINGW
4   WINFLAGS = -Wl,--no-undefined -Wl,--export-all-symbols
5 endif
6
7 if USE_COVERAGE
8   AM_CFLAGS = --coverage -O0
9 endif
10
11 pkgcfgdir= $(pkgdatadir)/config.d/
12
13 plugindir = $(libdir)/gnunet
14
15 pkgcfg_DATA = \
16   dns.conf
17
18 if LINUX
19 HIJACKBIN = gnunet-helper-dns
20 install-exec-hook:
21         $(SUDO_BINARY) chown root $(bindir)/gnunet-helper-dns || true
22         $(SUDO_BINARY) chgrp $(GNUNETDNS_GROUP) $(bindir)/gnunet-helper-dns || true
23         $(SUDO_BINARY) chmod 4750 $(bindir)/gnunet-helper-dns || true
24         $(SUDO_BINARY) chgrp $(GNUNETDNS_GROUP) $(bindir)/gnunet-service-dns || true
25         $(SUDO_BINARY) chmod 2755 $(bindir)/gnunet-service-dns || true
26 else
27 install-exec-hook:
28 endif
29
30 lib_LTLIBRARIES = \
31   libgnunetdnsparser.la \
32   libgnunetdns.la
33
34 bin_PROGRAMS = \
35   gnunet-service-dns $(HIJACKBIN)
36
37 noinst_PROGRAMS = \
38   gnunet-dns-monitor gnunet-dns-redirector
39
40 plugin_LTLIBRARIES = \
41   libgnunet_plugin_block_dns.la 
42
43 check_SCRIPTS = \
44  test_gnunet_dns.sh
45
46
47 gnunet_helper_dns_SOURCES = \
48  gnunet-helper-dns.c
49
50
51 gnunet_dns_monitor_SOURCES = \
52  gnunet-dns-monitor.c
53 gnunet_dns_monitor_LDADD = \
54   $(top_builddir)/src/dns/libgnunetdnsparser.la \
55   $(top_builddir)/src/dns/libgnunetdns.la \
56   $(top_builddir)/src/util/libgnunetutil.la \
57   $(GN_LIBINTL)
58 gnunet_dns_monitor_DEPENDENCIES = \
59   libgnunetdnsparser.la \
60   libgnunetdns.la
61
62 gnunet_dns_redirector_SOURCES = \
63  gnunet-dns-redirector.c
64 gnunet_dns_redirector_LDADD = \
65   $(top_builddir)/src/dns/libgnunetdnsparser.la \
66   $(top_builddir)/src/dns/libgnunetdns.la \
67   $(top_builddir)/src/util/libgnunetutil.la \
68   $(GN_LIBINTL)
69 gnunet_dns_redirector_DEPENDENCIES = \
70   libgnunetdnsparser.la \
71   libgnunetdns.la
72
73 gnunet_service_dns_SOURCES = \
74  gnunet-service-dns.c 
75 gnunet_service_dns_LDADD = \
76   $(top_builddir)/src/tun/libgnunettun.la \
77   $(top_builddir)/src/statistics/libgnunetstatistics.la \
78   $(top_builddir)/src/util/libgnunetutil.la \
79   $(GN_LIBINTL)
80
81 libgnunetdnsparser_la_SOURCES = \
82  dnsparser.c 
83 libgnunetdnsparser_la_LIBADD = \
84  $(top_builddir)/src/util/libgnunetutil.la $(XLIB)
85 libgnunetdnsparser_la_LDFLAGS = \
86   $(GN_LIB_LDFLAGS)
87
88 libgnunetdns_la_SOURCES = \
89  dns_api.c dns.h
90 libgnunetdns_la_LIBADD = \
91  $(top_builddir)/src/util/libgnunetutil.la $(XLIB)
92 libgnunetdns_la_LDFLAGS = \
93   $(GN_LIB_LDFLAGS)
94
95 libgnunet_plugin_block_dns_la_SOURCES = \
96   plugin_block_dns.c
97 libgnunet_plugin_block_dns_la_LIBADD = \
98   $(top_builddir)/src/util/libgnunetutil.la
99 libgnunet_plugin_block_dns_la_LDFLAGS = \
100   $(top_builddir)/src/block/$(GN_PLUGIN_LDFLAGS)
101
102
103 if ENABLE_TEST_RUN
104 TESTS = $(check_PROGRAMS)  $(check_SCRIPTS)
105 endif
106
107 EXTRA_DIST = \
108   $(check_SCRIPTS)