f7376a111b18c640f99c156759d1e039d9c483d4
[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-hijack-dns gnunet-helper-dns
20 install-exec-hook:
21         $(SUDO_BINARY) chown root:root $(bindir)/gnunet-helper-hijack-dns || true
22         $(SUDO_BINARY) chmod u+s $(bindir)/gnunet-helper-hijack-dns || true
23         $(SUDO_BINARY) chown root:root $(bindir)/gnunet-helper-dns || true
24         $(SUDO_BINARY) chmod u+s $(bindir)/gnunet-helper-dns || true
25 else
26 install-exec-hook:
27 endif
28
29 lib_LTLIBRARIES = \
30   libgnunetdnsparser.la \
31   libgnunetdnsnew.la \
32   libgnunetdns.la
33
34 bin_PROGRAMS = \
35   gnunet-service-dns gnunet-service-dns-new $(HIJACKBIN)
36
37 noinst_PROGRAMS = \
38   gnunet-dns-monitor gnunet-dns-redirector
39
40 plugin_LTLIBRARIES = \
41   libgnunet_plugin_block_dns.la 
42
43
44 gnunet_helper_hijack_dns_SOURCES = \
45  gnunet-helper-hijack-dns.c
46
47 gnunet_helper_dns_SOURCES = \
48  gnunet-helper-dns.c
49
50 gnunet_service_dns_SOURCES = \
51  gnunet-service-dns.c 
52 gnunet_service_dns_LDADD = \
53   $(top_builddir)/src/core/libgnunetcore.la \
54   $(top_builddir)/src/statistics/libgnunetstatistics.la \
55   $(top_builddir)/src/util/libgnunetutil.la \
56   $(top_builddir)/src/dht/libgnunetdht.la \
57   $(top_builddir)/src/mesh/libgnunetmesh.la \
58   $(top_builddir)/src/dns/libgnunetdnsparser.la \
59   $(GN_LIBINTL)
60 gnunet_service_dns_DEPENDENCIES = \
61   libgnunetdnsparser.la
62
63 gnunet_dns_monitor_SOURCES = \
64  gnunet-dns-monitor.c
65 gnunet_dns_monitor_LDADD = \
66   $(top_builddir)/src/dns/libgnunetdnsparser.la \
67   $(top_builddir)/src/dns/libgnunetdnsnew.la \
68   $(top_builddir)/src/util/libgnunetutil.la \
69   $(GN_LIBINTL)
70 gnunet_dns_monitor_DEPENDENCIES = \
71   libgnunetdnsparser.la \
72   libgnunetdnsnew.la
73
74 gnunet_dns_redirector_SOURCES = \
75  gnunet-dns-redirector.c
76 gnunet_dns_redirector_LDADD = \
77   $(top_builddir)/src/dns/libgnunetdnsparser.la \
78   $(top_builddir)/src/dns/libgnunetdnsnew.la \
79   $(top_builddir)/src/util/libgnunetutil.la \
80   $(GN_LIBINTL)
81 gnunet_dns_redirector_DEPENDENCIES = \
82   libgnunetdnsparser.la \
83   libgnunetdnsnew.la
84
85 gnunet_service_dns_new_SOURCES = \
86  gnunet-service-dns_new.c 
87 gnunet_service_dns_new_LDADD = \
88   $(top_builddir)/src/statistics/libgnunetstatistics.la \
89   $(top_builddir)/src/util/libgnunetutil.la \
90   $(GN_LIBINTL)
91
92 libgnunetdnsparser_la_SOURCES = \
93  dnsparser.c 
94 libgnunetdnsparser_la_LIBADD = \
95  $(top_builddir)/src/util/libgnunetutil.la $(XLIB)
96 libgnunetdnsparser_la_LDFLAGS = \
97   $(GN_LIB_LDFLAGS)
98
99 libgnunetdns_la_SOURCES = \
100  dns_api.c dns.h
101 libgnunetdns_la_LIBADD = \
102  $(top_builddir)/src/util/libgnunetutil.la $(XLIB)
103 libgnunetdns_la_LDFLAGS = \
104   $(GN_LIB_LDFLAGS)
105
106 libgnunetdnsnew_la_SOURCES = \
107  dns_api_new.c dns_new.h
108 libgnunetdnsnew_la_LIBADD = \
109  $(top_builddir)/src/util/libgnunetutil.la $(XLIB)
110 libgnunetdnsnew_la_LDFLAGS = \
111   $(GN_LIB_LDFLAGS)
112
113 libgnunet_plugin_block_dns_la_SOURCES = \
114   plugin_block_dns.c
115 libgnunet_plugin_block_dns_la_LIBADD = \
116   $(top_builddir)/src/util/libgnunetutil.la
117 libgnunet_plugin_block_dns_la_LDFLAGS = \
118   $(top_builddir)/src/block/$(GN_PLUGIN_LDFLAGS)
119
120
121