]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - Makefile.in
import unbound 1.4.17
[FreeBSD/FreeBSD.git] / Makefile.in
1 # Copyright 2007 NLnet Labs
2 # See the file LICENSE for the license
3
4 SHELL=@SHELL@
5 VERSION=@PACKAGE_VERSION@
6 srcdir=@srcdir@
7 prefix=@prefix@
8 exec_prefix=@exec_prefix@
9 bindir=@bindir@
10 sbindir=@sbindir@
11 mandir=@mandir@
12 libdir=@libdir@
13 # datarootdir is here to please some checkers, use datadir.
14 datarootdir=@datarootdir@
15 datadir=@datadir@
16 includedir=@includedir@
17 doxygen=@doxygen@
18 libtool=@libtool@
19 ldnsdir=@ldnsdir@
20 staticexe=@staticexe@
21 EXEEXT=@EXEEXT@
22 configfile=@ub_conf_file@
23 UNBOUND_RUN_DIR=@UNBOUND_RUN_DIR@
24 CHECKLOCK_SRC=testcode/checklocks.c
25 CHECKLOCK_OBJ=@CHECKLOCK_OBJ@
26 WITH_PYTHONMODULE=@WITH_PYTHONMODULE@
27 WITH_PYUNBOUND=@WITH_PYUNBOUND@
28 PYTHON_SITE_PKG=@PYTHON_SITE_PKG@
29 PYTHONMOD_INSTALL=@PYTHONMOD_INSTALL@
30 PYTHONMOD_UNINSTALL=@PYTHONMOD_UNINSTALL@
31 PYUNBOUND_INSTALL=@PYUNBOUND_INSTALL@
32 PYUNBOUND_UNINSTALL=@PYUNBOUND_UNINSTALL@
33
34 # _unbound.la if pyunbound enabled.
35 PYUNBOUND_TARGET=@PYUNBOUND_TARGET@
36
37 # override $U variable which is used by autotools for deansification (for
38 # K&R C compilers), but causes problems if $U is defined in the env).
39 U=
40
41 SWIG=@SWIG@
42 YACC=@YACC@
43 LEX=@LEX@
44 STRIP=@STRIP@
45 CC=@CC@
46 CPPFLAGS=-I. @CPPFLAGS@
47 CFLAGS=@CFLAGS@
48 LDFLAGS=@LDFLAGS@
49 LIBS=@LIBS@
50 LIBOBJS=@LIBOBJS@
51 # filter out ctime_r from compat obj.
52 LIBOBJ_WITHOUT_CTIME=@LIBOBJ_WITHOUT_CTIME@
53 RUNTIME_PATH=@RUNTIME_PATH@
54 DEPFLAG=@DEPFLAG@
55 DATE=@CONFIG_DATE@
56 LIBTOOL=$(libtool)
57 BUILD=build/
58 UBSYMS=@UBSYMS@
59 EXTRALINK=@EXTRALINK@
60
61 WINDRES=@WINDRES@
62 LINT=splint
63 LINTFLAGS=+quiet -weak -warnposix -unrecog -Din_addr_t=uint32_t -Du_int=unsigned -Du_char=uint8_t -preproc -Drlimit=rlimit64 -D__gnuc_va_list=va_list
64 #-Dglob64=glob -Dglobfree64=globfree
65 # compat with openssl linux edition.
66 LINTFLAGS+="-DBN_ULONG=unsigned long" -Dkrb5_int32=int "-Dkrb5_ui_4=unsigned int" -DPQ_64BIT=uint64_t -DRC4_INT=unsigned -fixedformalarray -D"ENGINE=unsigned" -D"RSA=unsigned" -D"DSA=unsigned" -D"EVP_PKEY=unsigned" -D"EVP_MD=unsigned" -D"SSL=unsigned" -D"SSL_CTX=unsigned" -D"X509=unsigned" -D"RC4_KEY=unsigned" -D"EVP_MD_CTX=unsigned" -D"ECDSA_SIG=DSA_SIG"
67 # compat with NetBSD
68 LINTFLAGS+=@NETBSD_LINTFLAGS@
69 # compat with OpenBSD
70 LINTFLAGS+="-Dsigset_t=long"
71 # FreeBSD8
72 LINTFLAGS+="-D__uint16_t=uint16_t"
73
74 INSTALL=$(srcdir)/install-sh
75
76 #pythonmod.c is not here, it is mentioned by itself in its own rules,
77 #makedepend fails on missing interface.h otherwise.
78 PYTHONMOD_SRC=pythonmod/pythonmod_utils.c
79 # pythonmod.lo pythonmod_utils.lo if python mod enabled.
80 PYTHONMOD_OBJ=@PYTHONMOD_OBJ@
81 PYTHONMOD_HEADER=@PYTHONMOD_HEADER@
82 # libunbound/python/libunbound_wrap.c is dealt with by its own rules.
83 PYUNBOUND_SRC=
84 # libunbound_wrap.lo if python libunbound wrapper enabled.
85 PYUNBOUND_OBJ=@PYUNBOUND_OBJ@
86 COMMON_SRC=services/cache/dns.c services/cache/infra.c services/cache/rrset.c \
87 util/data/dname.c util/data/msgencode.c util/data/msgparse.c \
88 util/data/msgreply.c util/data/packed_rrset.c iterator/iterator.c \
89 iterator/iter_delegpt.c iterator/iter_donotq.c iterator/iter_fwd.c \
90 iterator/iter_hints.c iterator/iter_priv.c iterator/iter_resptype.c \
91 iterator/iter_scrub.c iterator/iter_utils.c services/listen_dnsport.c \
92 services/localzone.c services/mesh.c services/modstack.c \
93 services/outbound_list.c services/outside_network.c util/alloc.c \
94 util/config_file.c util/configlexer.c util/configparser.c \
95 util/fptr_wlist.c util/locks.c util/log.c util/mini_event.c util/module.c \
96 util/netevent.c util/net_help.c util/random.c util/rbtree.c util/regional.c \
97 util/rtt.c util/storage/dnstree.c util/storage/lookup3.c \
98 util/storage/lruhash.c util/storage/slabhash.c util/timehist.c util/tube.c \
99 util/winsock_event.c validator/autotrust.c validator/val_anchor.c \
100 validator/validator.c validator/val_kcache.c validator/val_kentry.c \
101 validator/val_neg.c validator/val_nsec3.c validator/val_nsec.c \
102 validator/val_sigcrypt.c validator/val_utils.c $(CHECKLOCK_SRC)
103 COMMON_OBJ_WITHOUT_NETCALL=dns.lo infra.lo rrset.lo dname.lo msgencode.lo \
104 msgparse.lo msgreply.lo packed_rrset.lo iterator.lo iter_delegpt.lo \
105 iter_donotq.lo iter_fwd.lo iter_hints.lo iter_priv.lo iter_resptype.lo \
106 iter_scrub.lo iter_utils.lo localzone.lo mesh.lo modstack.lo \
107 outbound_list.lo alloc.lo config_file.lo configlexer.lo configparser.lo \
108 fptr_wlist.lo locks.lo log.lo mini_event.lo module.lo net_help.lo \
109 random.lo rbtree.lo regional.lo rtt.lo dnstree.lo lookup3.lo lruhash.lo \
110 slabhash.lo timehist.lo tube.lo winsock_event.lo autotrust.lo val_anchor.lo \
111 validator.lo val_kcache.lo val_kentry.lo val_neg.lo val_nsec3.lo val_nsec.lo \
112 val_sigcrypt.lo val_utils.lo $(PYTHONMOD_OBJ) $(CHECKLOCK_OBJ)
113 COMMON_OBJ=$(COMMON_OBJ_WITHOUT_NETCALL) netevent.lo listen_dnsport.lo \
114 outside_network.lo
115 # set to $COMMON_OBJ or to "" if --enableallsymbols
116 COMMON_OBJ_ALL_SYMBOLS=@COMMON_OBJ_ALL_SYMBOLS@
117 COMPAT_SRC=compat/ctime_r.c compat/fake-rfc2553.c compat/gmtime_r.c \
118 compat/inet_aton.c compat/inet_ntop.c compat/inet_pton.c compat/malloc.c \
119 compat/memcmp.c compat/memmove.c compat/snprintf.c compat/strlcpy.c \
120 compat/strptime.c
121 COMPAT_OBJ=$(LIBOBJS:.o=.lo)
122 COMPAT_OBJ_WITHOUT_CTIME=$(LIBOBJ_WITHOUT_CTIME:.o=.lo)
123 UNITTEST_SRC=testcode/unitanchor.c testcode/unitdname.c \
124 testcode/unitlruhash.c testcode/unitmain.c testcode/unitmsgparse.c \
125 testcode/unitneg.c testcode/unitregional.c testcode/unitslabhash.c \
126 testcode/unitverify.c testcode/readhex.c testcode/ldns-testpkts.c
127 UNITTEST_OBJ=unitanchor.lo unitdname.lo unitlruhash.lo unitmain.lo \
128 unitmsgparse.lo unitneg.lo unitregional.lo unitslabhash.lo unitverify.lo \
129 readhex.lo ldns-testpkts.lo
130 UNITTEST_OBJ_LINK=$(UNITTEST_OBJ) worker_cb.lo $(COMMON_OBJ) $(COMPAT_OBJ)
131 DAEMON_SRC=daemon/acl_list.c daemon/cachedump.c daemon/daemon.c \
132 daemon/remote.c daemon/stats.c daemon/unbound.c daemon/worker.c @WIN_DAEMON_SRC@
133 DAEMON_OBJ=acl_list.lo cachedump.lo daemon.lo remote.lo stats.lo unbound.lo \
134 worker.lo @WIN_DAEMON_OBJ@
135 DAEMON_OBJ_LINK=$(DAEMON_OBJ) $(COMMON_OBJ_ALL_SYMBOLS) \
136 $(COMPAT_OBJ) @WIN_DAEMON_OBJ_LINK@
137 CHECKCONF_SRC=smallapp/unbound-checkconf.c smallapp/worker_cb.c
138 CHECKCONF_OBJ=unbound-checkconf.lo worker_cb.lo
139 CHECKCONF_OBJ_LINK=$(CHECKCONF_OBJ) $(COMMON_OBJ_ALL_SYMBOLS) \
140 $(COMPAT_OBJ) @WIN_CHECKCONF_OBJ_LINK@
141 CONTROL_SRC=smallapp/unbound-control.c
142 CONTROL_OBJ=unbound-control.lo 
143 CONTROL_OBJ_LINK=$(CONTROL_OBJ) worker_cb.lo $(COMMON_OBJ_ALL_SYMBOLS) \
144 $(COMPAT_OBJ) @WIN_CONTROL_OBJ_LINK@
145 HOST_SRC=smallapp/unbound-host.c
146 HOST_OBJ=unbound-host.lo
147 HOST_OBJ_LINK=$(HOST_OBJ) $(COMPAT_OBJ_WITHOUT_CTIME) @WIN_HOST_OBJ_LINK@
148 UBANCHOR_SRC=smallapp/unbound-anchor.c
149 UBANCHOR_OBJ=unbound-anchor.lo
150 UBANCHOR_OBJ_LINK=$(UBANCHOR_OBJ) \
151 $(COMPAT_OBJ_WITHOUT_CTIME) @WIN_UBANCHOR_OBJ_LINK@
152 TESTBOUND_SRC=testcode/testbound.c testcode/ldns-testpkts.c \
153 daemon/worker.c daemon/acl_list.c daemon/daemon.c daemon/stats.c \
154 testcode/replay.c testcode/fake_event.c
155 TESTBOUND_OBJ=testbound.lo replay.lo fake_event.lo
156 TESTBOUND_OBJ_LINK=$(TESTBOUND_OBJ) ldns-testpkts.lo worker.lo acl_list.lo \
157 daemon.lo stats.lo $(COMMON_OBJ_WITHOUT_NETCALL) $(COMPAT_OBJ)
158 LOCKVERIFY_SRC=testcode/lock_verify.c
159 LOCKVERIFY_OBJ=lock_verify.lo
160 LOCKVERIFY_OBJ_LINK=$(LOCKVERIFY_OBJ) worker_cb.lo $(COMMON_OBJ) $(COMPAT_OBJ)
161 PETAL_SRC=testcode/petal.c
162 PETAL_OBJ=petal.lo
163 PETAL_OBJ_LINK=$(PETAL_OBJ) $(COMPAT_OBJ_WITHOUT_CTIME)
164 PKTVIEW_SRC=testcode/pktview.c testcode/readhex.c
165 PKTVIEW_OBJ=pktview.lo
166 PKTVIEW_OBJ_LINK=$(PKTVIEW_OBJ) worker_cb.lo readhex.lo $(COMMON_OBJ) \
167 $(COMPAT_OBJ)
168 SIGNIT_SRC=testcode/signit.c
169 SIGNIT_OBJ=signit.lo
170 SIGNIT_OBJ_LINK=$(SIGNIT_OBJ) worker_cb.lo $(COMMON_OBJ) $(COMPAT_OBJ)
171 MEMSTATS_SRC=testcode/memstats.c
172 MEMSTATS_OBJ=memstats.lo
173 MEMSTATS_OBJ_LINK=$(MEMSTATS_OBJ) worker_cb.lo $(COMMON_OBJ) $(COMPAT_OBJ)
174 ASYNCLOOK_SRC=testcode/asynclook.c
175 ASYNCLOOK_OBJ=asynclook.lo
176 ASYNCLOOK_OBJ_LINK=$(ASYNCLOOK_OBJ) log.lo locks.lo $(COMPAT_OBJ)
177 STREAMTCP_SRC=testcode/streamtcp.c
178 STREAMTCP_OBJ=streamtcp.lo
179 STREAMTCP_OBJ_LINK=$(STREAMTCP_OBJ) worker_cb.lo $(COMMON_OBJ) $(COMPAT_OBJ)
180 PERF_SRC=testcode/perf.c
181 PERF_OBJ=perf.lo
182 PERF_OBJ_LINK=$(PERF_OBJ) worker_cb.lo $(COMMON_OBJ) $(COMPAT_OBJ)
183 DELAYER_SRC=testcode/delayer.c
184 DELAYER_OBJ=delayer.lo
185 DELAYER_OBJ_LINK=$(DELAYER_OBJ) worker_cb.lo $(COMMON_OBJ) $(COMPAT_OBJ)
186 HARVEST_SRC=testcode/harvest.c
187 HARVEST_OBJ=harvest.lo
188 HARVEST_OBJ_LINK=$(HARVEST_OBJ) $(COMPAT_OBJ_WITHOUT_CTIME)
189 LIBUNBOUND_SRC=libunbound/context.c libunbound/libunbound.c \
190 libunbound/libworker.c
191 LIBUNBOUND_OBJ=context.lo libunbound.lo libworker.lo
192 LIBUNBOUND_OBJ_LINK=$(LIBUNBOUND_OBJ) $(COMMON_OBJ) $(COMPAT_OBJ)
193
194 # win apps or "" if not on windows
195 WINAPPS=@WINAPPS@
196 WIN_DAEMON_THE_SRC=winrc/win_svc.c winrc/w_inst.c
197 SVCINST_SRC=winrc/unbound-service-install.c
198 SVCINST_OBJ=unbound-service-install.lo
199 SVCINST_OBJ_LINK=$(SVCINST_OBJ) w_inst.lo rsrc_svcinst.o $(COMPAT_OBJ_WITHOUT_CTIME)
200 SVCUNINST_SRC=winrc/unbound-service-remove.c
201 SVCUNINST_OBJ=unbound-service-remove.lo
202 SVCUNINST_OBJ_LINK=$(SVCUNINST_OBJ) w_inst.lo rsrc_svcuninst.o \
203 $(COMPAT_OBJ_WITHOUT_CTIME)
204 ANCHORUPD_SRC=winrc/anchor-update.c
205 ANCHORUPD_OBJ=anchor-update.lo
206 ANCHORUPD_OBJ_LINK=$(ANCHORUPD_OBJ) rsrc_anchorupd.o $(COMPAT_OBJ_WITHOUT_CTIME)
207 RSRC_OBJ=rsrc_svcinst.o rsrc_svcuninst.o rsrc_anchorupd.o rsrc_unbound.o \
208         rsrc_unbound_host.o rsrc_unbound_anchor.o rsrc_unbound_control.o \
209         rsrc_unbound_checkconf.o
210
211 ALL_SRC=$(COMMON_SRC) $(UNITTEST_SRC) $(DAEMON_SRC) \
212         $(TESTBOUND_SRC) $(LOCKVERIFY_SRC) $(PKTVIEW_SRC) $(SIGNIT_SRC) \
213         $(MEMSTATS_SRC) $(CHECKCONF_SRC) $(LIBUNBOUND_SRC) $(HOST_SRC) \
214         $(ASYNCLOOK_SRC) $(STREAMTCP_SRC) $(PERF_SRC) $(DELAYER_SRC) \
215         $(HARVEST_SRC) $(CONTROL_SRC) $(UBANCHOR_SRC) $(PETAL_SRC) \
216         $(PYTHONMOD_SRC) $(PYUNBOUND_SRC) $(WIN_DAEMON_THE_SRC)\
217         $(SVCINST_SRC) $(SVCUNINST_SRC) $(ANCHORUPD_SRC)
218 ALL_OBJ=$(COMMON_OBJ) $(UNITTEST_OBJ) $(DAEMON_OBJ) \
219         $(TESTBOUND_OBJ) $(LOCKVERIFY_OBJ) $(PKTVIEW_OBJ) $(SIGNIT_OBJ) \
220         $(MEMSTATS_OBJ) $(CHECKCONF_OBJ) $(LIBUNBOUND_OBJ) $(HOST_OBJ) \
221         $(ASYNCLOOK_OBJ) $(STREAMTCP_OBJ) $(PERF_OBJ) $(DELAYER_OBJ) \
222         $(HARVEST_OBJ) $(CONTROL_OBJ) $(UBANCHOR_OBJ) $(PETAL_OBJ) \
223         $(COMPAT_OBJ) $(PYUNBOUND_OBJ) \
224         $(SVCINST_OBJ) $(SVCUNINST_OBJ) $(ANCHORUPD_OBJ)
225
226 COMPILE=$(LIBTOOL) --tag=CC --mode=compile $(CC) $(CPPFLAGS) $(CFLAGS)
227 LINK=$(LIBTOOL) --tag=CC --mode=link $(CC) $(staticexe) $(RUNTIME_PATH) $(CPPFLAGS) $(CFLAGS) $(LDFLAGS)
228 LINK_LIB=$(LIBTOOL) --tag=CC --mode=link $(CC) $(RUNTIME_PATH) $(CPPFLAGS) $(CFLAGS) $(LDFLAGS) $(staticexe) -version-info @LIBUNBOUND_CURRENT@:@LIBUNBOUND_REVISION@:@LIBUNBOUND_AGE@ -no-undefined
229
230 .PHONY: clean realclean doc lint all install uninstall tests test strip lib longtest longcheck check
231
232 all:    $(COMMON_OBJ) unbound$(EXEEXT) unbound-checkconf$(EXEEXT) lib unbound-host$(EXEEXT) unbound-control$(EXEEXT) unbound-anchor$(EXEEXT) unbound-control-setup $(WINAPPS) $(PYUNBOUND_TARGET)
233
234 # compat with BSD make, register suffix, and an implicit rule to actualise it.
235 .SUFFIXES: .lo
236 .c.lo:
237         $(COMPILE) -o $@ -c $<
238
239 $(ALL_OBJ):
240         @@SOURCEDETERMINE@
241         $(COMPILE) -o $@ -c @SOURCEFILE@
242
243 $(RSRC_OBJ):
244         @@SOURCEDETERMINE@
245         $(WINDRES) $(CPPFLAGS) @SOURCEFILE@ $@
246
247 rsrc_svcinst.o: $(srcdir)/winrc/rsrc_svcinst.rc config.h
248 rsrc_svcuninst.o:       $(srcdir)/winrc/rsrc_svcuninst.rc config.h
249 rsrc_anchorupd.o:       $(srcdir)/winrc/rsrc_anchorupd.rc config.h
250 rsrc_unbound.o: $(srcdir)/winrc/rsrc_unbound.rc config.h
251 rsrc_unbound_host.o:    $(srcdir)/winrc/rsrc_unbound_host.rc config.h
252 rsrc_unbound_anchor.o:  $(srcdir)/winrc/rsrc_unbound_anchor.rc config.h
253 rsrc_unbound_control.o: $(srcdir)/winrc/rsrc_unbound_control.rc config.h
254 rsrc_unbound_checkconf.o:       $(srcdir)/winrc/rsrc_unbound_checkconf.rc config.h
255
256 TEST_BIN=asynclook$(EXEEXT) delayer$(EXEEXT) harvest$(EXEEXT) \
257         lock-verify$(EXEEXT) memstats$(EXEEXT) perf$(EXEEXT) \
258         petal$(EXEEXT) pktview$(EXEEXT) signit$(EXEEXT) streamtcp$(EXEEXT) \
259         testbound$(EXEEXT) unittest$(EXEEXT)
260 tests:  all $(TEST_BIN)
261
262 check: test
263 longcheck: longtest
264
265 test:   unittest$(EXEEXT) testbound$(EXEEXT)
266         ./unittest$(EXEEXT)
267         ./testbound$(EXEEXT) -s
268         for x in testdata/*.rpl; do echo -n "$$x "; if ./testbound$(EXEEXT) -p $$x >/dev/null 2>&1; then echo OK; else echo failed; exit 1; fi done
269         @echo test OK
270
271 longtest:       tests
272         if test -x "`which bash`"; then bash testcode/do-tests.sh; else sh testcode/do-tests.sh; fi
273
274 lib:    libunbound.la
275
276 libunbound.la:  $(LIBUNBOUND_OBJ_LINK)
277         $(LINK_LIB) $(UBSYMS) -o $@ $(LIBUNBOUND_OBJ_LINK) -rpath $(libdir) -lssl $(LIBS)
278
279 unbound$(EXEEXT):       $(DAEMON_OBJ_LINK) libunbound.la
280         $(LINK) -o $@ $(DAEMON_OBJ_LINK) $(EXTRALINK) -lssl $(LIBS)
281
282 unbound-checkconf$(EXEEXT):     $(CHECKCONF_OBJ_LINK) libunbound.la
283         $(LINK) -o $@ $(CHECKCONF_OBJ_LINK) $(EXTRALINK) -lssl $(LIBS)
284
285 unbound-control$(EXEEXT):       $(CONTROL_OBJ_LINK) libunbound.la
286         $(LINK) -o $@ $(CONTROL_OBJ_LINK) $(EXTRALINK) -lssl $(LIBS)
287
288 unbound-host$(EXEEXT):  $(HOST_OBJ_LINK) libunbound.la
289         $(LINK) -o $@ $(HOST_OBJ_LINK) -L. -L.libs -lunbound $(LIBS)
290
291 unbound-anchor$(EXEEXT):        $(UBANCHOR_OBJ_LINK) libunbound.la
292         $(LINK) -o $@ $(UBANCHOR_OBJ_LINK) -L. -L.libs -lunbound -lexpat -lssl $(LIBS)
293
294 unbound-service-install$(EXEEXT):       $(SVCINST_OBJ_LINK)
295         $(LINK) -o $@ $(SVCINST_OBJ_LINK) $(LIBS)
296
297 unbound-service-remove$(EXEEXT):        $(SVCUNINST_OBJ_LINK)
298         $(LINK) -o $@ $(SVCUNINST_OBJ_LINK) $(LIBS)
299
300 anchor-update$(EXEEXT):  $(ANCHORUPD_OBJ_LINK) libunbound.la
301         $(LINK) -o $@ $(ANCHORUPD_OBJ_LINK) -L. -L.libs -lunbound $(LIBS)
302
303 unittest$(EXEEXT):      $(UNITTEST_OBJ_LINK)
304         $(LINK) -o $@ $(UNITTEST_OBJ_LINK) -lssl $(LIBS)
305
306 testbound$(EXEEXT):     $(TESTBOUND_OBJ_LINK)
307         $(LINK) -o $@ $(TESTBOUND_OBJ_LINK) -lssl $(LIBS)
308
309 lock-verify$(EXEEXT):   $(LOCKVERIFY_OBJ_LINK)
310         $(LINK) -o $@ $(LOCKVERIFY_OBJ_LINK) -lssl $(LIBS)
311
312 petal$(EXEEXT): $(PETAL_OBJ_LINK)
313         $(LINK) -o $@ $(PETAL_OBJ_LINK) -lssl $(LIBS)
314
315 pktview$(EXEEXT):       $(PKTVIEW_OBJ_LINK)
316         $(LINK) -o $@ $(PKTVIEW_OBJ_LINK) -lssl $(LIBS)
317
318 signit$(EXEEXT):        $(SIGNIT_OBJ_LINK)
319         $(LINK) -o $@ $(SIGNIT_OBJ_LINK) -lssl $(LIBS)
320
321 memstats$(EXEEXT):      $(MEMSTATS_OBJ_LINK)
322         $(LINK) -o $@ $(MEMSTATS_OBJ_LINK) -lssl $(LIBS)
323
324 asynclook$(EXEEXT):     $(ASYNCLOOK_OBJ_LINK) libunbound.la
325         $(LINK) -o $@ $(ASYNCLOOK_OBJ_LINK) $(LIBS) -L. -L.libs -lunbound
326
327 streamtcp$(EXEEXT):     $(STREAMTCP_OBJ_LINK)
328         $(LINK) -o $@ $(STREAMTCP_OBJ_LINK) -lssl $(LIBS)
329
330 perf$(EXEEXT):  $(PERF_OBJ_LINK)
331         $(LINK) -o $@ $(PERF_OBJ_LINK) -lssl $(LIBS)
332
333 delayer$(EXEEXT):       $(DELAYER_OBJ_LINK)
334         $(LINK) -o $@ $(DELAYER_OBJ_LINK) -lssl $(LIBS)
335
336 harvest$(EXEEXT):       $(HARVEST_OBJ_LINK) libunbound.la
337         $(LINK) -o $@ $(HARVEST_OBJ_LINK) $(LIBS) -L. -L.libs -lunbound
338
339 unbound-control-setup:  $(srcdir)/smallapp/unbound-control-setup.sh
340         sed -e 's:^DESTDIR=.*$$:DESTDIR=$(UNBOUND_RUN_DIR):' < $(srcdir)/smallapp/unbound-control-setup.sh > $@
341         -chmod +x $@
342
343 #testcode/ldns-testpkts.c:      $(ldnsdir)/examples/ldns-testpkts.c \
344 #                       $(ldnsdir)/examples/ldns-testpkts.h
345 #       cp $(ldnsdir)/examples/ldns-testpkts.c testcode/ldns-testpkts.c
346 #       cp $(ldnsdir)/examples/ldns-testpkts.h testcode/ldns-testpkts.h
347
348 # Python Module
349 pythonmod.lo pythonmod.o: $(srcdir)/pythonmod/pythonmod.c config.h \
350         pythonmod/interface.h \
351         $(srcdir)/pythonmod/pythonmod.h $(srcdir)/util/module.h \
352         $(srcdir)/util/storage/lruhash.h $(srcdir)/util/locks.h \
353         $(srcdir)/util/log.h $(srcdir)/util/data/msgreply.h \
354         $(srcdir)/util/data/packed_rrset.h $(srcdir)/util/data/msgparse.h \
355         $(srcdir)/services/outbound_list.h $(srcdir)/util/config_file.h \
356         $(srcdir)/pythonmod/pythonmod_utils.h $(srcdir)/util/netevent.h \
357         $(srcdir)/util/regional.h $(srcdir)/util/data/dname.h \
358         $(srcdir)/services/cache/dns.h $(srcdir)/services/mesh.h \
359         $(srcdir)/util/rbtree.h $(srcdir)/services/modstack.h
360
361 pythonmod/interface.h:  $(srcdir)/pythonmod/interface.i $(srcdir)/config.h
362         @-if test ! -d pythonmod; then $(INSTALL) -d pythonmod; fi
363         $(SWIG) $(CPPFLAGS) -o $@ -python $(srcdir)/pythonmod/interface.i
364
365 libunbound_wrap.lo libunbound_wrap.o: libunbound/python/libunbound_wrap.c \
366         $(srcdir)/libunbound/unbound.h
367 libunbound/python/libunbound_wrap.c:    $(srcdir)/libunbound/python/libunbound.i $(srcdir)/libunbound/unbound.h
368         @-if test ! -d libunbound/python; then $(INSTALL) -d libunbound/python; fi
369         $(SWIG) -python -o $@ $(CPPFLAGS) $(srcdir)/libunbound/python/libunbound.i
370
371 # Pyunbound python unbound wrapper
372 _unbound.la:    libunbound_wrap.lo libunbound.la
373         $(LIBTOOL) --tag=CC --mode=link $(CC) $(RUNTIME_PATH) $(CPPFLAGS) $(CFLAGS) $(LDFLAGS) -module -version-info @LIBUNBOUND_CURRENT@:@LIBUNBOUND_REVISION@:@LIBUNBOUND_AGE@ -no-undefined -o $@ libunbound_wrap.lo -rpath $(PYTHON_SITE_PKG) L. -L.libs -lunbound $(LIBS)
374
375 util/config_file.c:     util/configparser.h
376 util/configlexer.c:  $(srcdir)/util/configlexer.lex util/configparser.h
377         @-if test ! -d util; then $(INSTALL) -d util; fi
378         if test "$(LEX)" != ":"; then \
379                 echo "#include \"config.h\"" > $@ ;\
380                 echo "#include \"util/configyyrename.h\"" >> $@ ;\
381                 $(LEX) -t $(srcdir)/util/configlexer.lex >> $@ ;\
382         fi
383
384 util/configparser.c util/configparser.h:  $(srcdir)/util/configparser.y
385         @-if test ! -d util; then $(INSTALL) -d util; fi
386         $(YACC) -d -o util/configparser.c $(srcdir)/util/configparser.y
387
388 clean:
389         rm -f *.o *.d *.lo *~ tags
390         rm -f unbound$(EXEEXT) unbound-checkconf$(EXEEXT) unbound-host$(EXEEXT) unbound-control$(EXEEXT) unbound-anchor$(EXEEXT) unbound-control-setup libunbound.la
391         rm -f $(ALL_SRC:.c=.lint)
392         rm -rf autom4te.cache .libs build doc/html doc/xml
393
394 realclean: clean
395         rm -f config.status config.log config.h.in config.h
396         rm -f configure config.sub config.guess ltmain.sh aclocal.m4 libtool
397         rm -f util/configlexer.c util/configparser.c util/configparser.h
398         rm -f $(TEST_BIN)
399         rm -f Makefile 
400
401 .SUFFIXES: .lint
402 .c.lint:
403         $(LINT) $(LINTFLAGS) -I. -I$(srcdir) -I$(ldnsdir)/include $<
404         touch $@
405
406 util/configparser.lint util/configlexer.lint pythonmod/pythonmod.lint libunbound/python/libunbound_wrap.lint:
407         # skip lint for generated code
408         touch $@
409
410 winrc/win_svc.lint winrc/w_inst.lint winrc/unbound-service-install.lint winrc/unbound-service-remove.lint:
411         # skip lint for windows types
412         touch $@
413
414 lint:   $(ALL_SRC:.c=.lint)
415
416 tags:   $(srcdir)/*.[ch] $(srcdir)/*/*.[ch]
417         ctags  -f $(srcdir)/tags $(srcdir)/*.[ch] $(srcdir)/*/*.[ch]
418
419 doc:
420         if test -n "$(doxygen)"; then \
421                 $(doxygen) $(srcdir)/doc/unbound.doxygen; fi
422         if test "$(WITH_PYUNBOUND)" = "yes" -o "$(WITH_PYTHONMODULE)" = "yes"; \
423             then if test -x "`which sphinx-build 2>&1`"; then \
424                 sphinx-build -b html pythonmod/doc doc/html/pythonmod; \
425                 sphinx-build -b html libunbound/python/doc doc/html/pyunbound;\
426             fi ;\
427         fi
428
429 strip:
430         $(STRIP) unbound$(EXEEXT)
431         $(STRIP) unbound-checkconf$(EXEEXT)
432         $(STRIP) unbound-control$(EXEEXT)
433         $(STRIP) unbound-host$(EXEEXT)
434         $(STRIP) unbound-anchor$(EXEEXT)
435
436 pythonmod-install:
437         $(INSTALL) -m 755 -d $(DESTDIR)$(PYTHON_SITE_PKG)
438         $(INSTALL) -c -m 644 pythonmod/unboundmodule.py $(DESTDIR)$(PYTHON_SITE_PKG)/unboundmodule.py
439
440 pyunbound-install:
441         $(INSTALL) -m 755 -d $(DESTDIR)$(PYTHON_SITE_PKG)
442         $(INSTALL) -c -m 644 libunbound/python/unbound.py $(DESTDIR)$(PYTHON_SITE_PKG)/unbound.py
443         $(LIBTOOL) --mode=install cp _unbound.la $(DESTDIR)$(PYTHON_SITE_PKG)
444         $(LIBTOOL) --mode=finish $(DESTDIR)$(PYTHON_SITE_PKG)
445
446 install:        all $(PYTHONMOD_INSTALL) $(PYUNBOUND_INSTALL)
447         $(INSTALL) -m 755 -d $(DESTDIR)$(sbindir)
448         $(INSTALL) -m 755 -d $(DESTDIR)$(mandir)
449         $(INSTALL) -m 755 -d $(DESTDIR)$(mandir)/man8
450         $(INSTALL) -m 755 -d $(DESTDIR)$(mandir)/man5
451         $(INSTALL) -m 755 -d $(DESTDIR)$(mandir)/man3
452         $(INSTALL) -m 755 -d $(DESTDIR)$(mandir)/man1
453         $(INSTALL) -m 755 -d $(DESTDIR)$(libdir)
454         $(INSTALL) -m 755 -d $(DESTDIR)$(includedir)
455         $(LIBTOOL) --mode=install cp unbound$(EXEEXT) $(DESTDIR)$(sbindir)/unbound$(EXEEXT)
456         $(LIBTOOL) --mode=install cp unbound-checkconf$(EXEEXT) $(DESTDIR)$(sbindir)/unbound-checkconf$(EXEEXT)
457         $(LIBTOOL) --mode=install cp unbound-control$(EXEEXT) $(DESTDIR)$(sbindir)/unbound-control$(EXEEXT)
458         $(LIBTOOL) --mode=install cp unbound-host$(EXEEXT) $(DESTDIR)$(sbindir)/unbound-host$(EXEEXT)
459         $(LIBTOOL) --mode=install cp unbound-anchor$(EXEEXT) $(DESTDIR)$(sbindir)/unbound-anchor$(EXEEXT)
460         $(INSTALL) -c -m 644 doc/unbound.8 $(DESTDIR)$(mandir)/man8
461         $(INSTALL) -c -m 644 doc/unbound-checkconf.8 $(DESTDIR)$(mandir)/man8
462         $(INSTALL) -c -m 644 doc/unbound-control.8 $(DESTDIR)$(mandir)/man8
463         $(INSTALL) -c -m 644 doc/unbound-anchor.8 $(DESTDIR)$(mandir)/man8
464         $(INSTALL) -c -m 644 doc/unbound.conf.5 $(DESTDIR)$(mandir)/man5
465         $(INSTALL) -c -m 644 $(srcdir)/doc/unbound-host.1 $(DESTDIR)$(mandir)/man1
466         $(INSTALL) -c -m 644 doc/libunbound.3 $(DESTDIR)$(mandir)/man3
467         $(INSTALL) -c -m 755 unbound-control-setup $(DESTDIR)$(sbindir)/unbound-control-setup
468         if test ! -e $(DESTDIR)$(configfile); then $(INSTALL) -d `dirname $(DESTDIR)$(configfile)`; $(INSTALL) -c -m 644 doc/example.conf $(DESTDIR)$(configfile); fi
469         $(LIBTOOL) --mode=install cp $(srcdir)/libunbound/unbound.h $(DESTDIR)$(includedir)/unbound.h
470         $(LIBTOOL) --mode=install cp libunbound.la $(DESTDIR)$(libdir)
471         $(LIBTOOL) --mode=finish $(DESTDIR)$(libdir)
472
473 pythonmod-uninstall:
474         rm -f -- $(DESTDIR)$(PYTHON_SITE_PKG)/unboundmodule.py
475
476 pyunbound-uninstall:
477         rm -f -- $(DESTDIR)$(PYTHON_SITE_PKG)/unbound.py
478         $(LIBTOOL) --mode=uninstall rm -f $(DESTDIR)$(PYTHON_SITE_PKG)/_unbound.la
479
480 uninstall:      $(PYTHONMOD_UNINSTALL) $(PYUNBOUND_UNINSTALL)
481         rm -f -- $(DESTDIR)$(sbindir)/unbound$(EXEEXT) $(DESTDIR)$(sbindir)/unbound-checkconf$(EXEEXT) $(DESTDIR)$(sbindir)/unbound-host$(EXEEXT) $(DESTDIR)$(sbindir)/unbound-control$(EXEEXT) $(DESTDIR)$(sbindir)/unbound-anchor$(EXEEXT) $(DESTDIR)$(sbindir)/unbound-control-setup
482         rm -f -- $(DESTDIR)$(mandir)/man8/unbound.8 $(DESTDIR)$(mandir)/man8/unbound-checkconf.8 $(DESTDIR)$(mandir)/man5/unbound.conf.5 $(DESTDIR)$(mandir)/man8/unbound-control.8 $(DESTDIR)$(mandir)/man8/unbound-anchor.8
483         rm -f -- $(DESTDIR)$(mandir)/man1/unbound-host.1 $(DESTDIR)$(mandir)/man3/libunbound.3
484         rm -f -- $(DESTDIR)$(includedir)/unbound.h
485         $(LIBTOOL) --mode=uninstall rm -f $(DESTDIR)$(libdir)/libunbound.la
486         @echo
487         @echo "You still need to remove "`dirname $(DESTDIR)$(configfile)`" , $(DESTDIR)$(configfile) by hand"
488
489 iana_update:
490         curl -o port-numbers.tmp http://www.iana.org/assignments/service-names-port-numbers/service-names-port-numbers.xml --compressed
491         if file port-numbers.tmp | grep 'gzip' >/dev/null; then zcat port-numbers.tmp; else cat port-numbers.tmp; fi | awk '/<record>/ {p=0;} /<protocol>udp/ {p=1;} /<protocol>[^u]/ {p=0;} /Decomissioned|Decommissioned|Removed|De-registered|unassigned|Unassigned|Reserved/ {u=1;} /<number>/ { if(u==1) {u=0;} else { if(p==1) { match($$0,/[0-9]+/); print substr($$0, RSTART, RLENGTH) ","}}}' | sort -nu > util/iana_ports.inc  
492         rm -f port-numbers.tmp
493
494 # dependency generation
495 DEPEND_TMP=depend1073.tmp
496 DEPEND_TMP2=depend1074.tmp
497 DEPEND_TARGET=Makefile
498 DEPEND_TARGET2=Makefile.in
499 # actions: generate deplines from gcc,
500 # then, filter out home/xx, /usr/xx and /opt/xx lines (some cc already do this)
501 # then, remove empty " \" lines
502 # then, add srcdir before .c and .h in deps.
503 # then, remove srcdir from the (generated) parser and lexer.
504 # and mention the .lo
505 depend:
506         (cd $(srcdir) ; $(CC) $(DEPFLAG) $(CPPFLAGS) $(CFLAGS) $(ALL_SRC) $(COMPAT_SRC)) | \
507                 sed -e 's!'$$HOME'[^ ]* !!g' -e 's!'$$HOME'[^ ]*$$!!g' \
508                         -e 's!/usr[^ ]* !!g' -e 's!/usr[^ ]*$$!!g' \
509                         -e 's!/opt[^ ]* !!g' -e 's!/opt[^ ]*$$!!g' | \
510                 sed -e '/^ \\$$/d' | \
511                 sed -e 's? *\([^ ]*\.[ch]\)? $$(srcdir)/\1?g' | \
512                 sed -e 's? *\([^ ]*\.inc\)? $$(srcdir)/\1?g' | \
513                 sed -e 's?$$(srcdir)/config.h?config.h?g' \
514                         -e 's?$$(srcdir)/util/configlexer.c?util/configlexer.c?g' \
515                         -e 's?$$(srcdir)/util/configparser.c?util/configparser.c?g' \
516                         -e 's?$$(srcdir)/util/configparser.h?util/configparser.h?g' \
517                         -e 's?$$(srcdir)/pythonmod/pythonmod.h?$$(PYTHONMOD_HEADER)?g' \
518                         -e 's!\(.*\)\.o[ :]*!\1.lo \1.o: !g' \
519                         > $(DEPEND_TMP)
520         cp $(DEPEND_TARGET) $(DEPEND_TMP2)
521         head -`egrep -n "# Dependencies" $(DEPEND_TARGET) | tail -1 | sed -e 's/:.*$$//'` $(DEPEND_TMP2) > $(DEPEND_TARGET)
522         cat $(DEPEND_TMP) >> $(DEPEND_TARGET)
523         @if diff $(DEPEND_TARGET) $(DEPEND_TMP2); then echo "   $(DEPEND_TARGET) unchanged"; else echo "        Updated $(DEPEND_TARGET))"; fi
524         @if test -f $(DEPEND_TARGET2); then \
525                 cp $(DEPEND_TARGET2) $(DEPEND_TMP2); \
526                 head -`egrep -n "# Dependencies" $(DEPEND_TARGET2) | tail -1 | sed -e 's/:.*$$//'` $(DEPEND_TMP2) > $(DEPEND_TARGET2); \
527                 cat $(DEPEND_TMP) >> $(DEPEND_TARGET2); \
528                 if diff $(DEPEND_TARGET2) $(DEPEND_TMP2); then echo "   $(DEPEND_TARGET2) unchanged"; else echo "       Updated $(DEPEND_TARGET2))"; fi; \
529         fi
530         rm -f $(DEPEND_TMP) $(DEPEND_TMP2)
531
532 # Dependencies
533 dns.lo dns.o: $(srcdir)/services/cache/dns.c config.h $(srcdir)/iterator/iter_delegpt.h $(srcdir)/util/log.h \
534  $(srcdir)/validator/val_nsec.h \
535  $(srcdir)/util/data/packed_rrset.h $(srcdir)/util/storage/lruhash.h $(srcdir)/util/locks.h \
536  $(srcdir)/services/cache/dns.h \
537  $(srcdir)/util/data/msgreply.h $(srcdir)/services/cache/rrset.h $(srcdir)/util/storage/slabhash.h \
538  $(srcdir)/util/data/dname.h $(srcdir)/util/module.h $(srcdir)/util/data/msgparse.h \
539  $(srcdir)/util/net_help.h \
540  $(srcdir)/util/regional.h $(srcdir)/util/config_file.h
541 infra.lo infra.o: $(srcdir)/services/cache/infra.c config.h \
542  $(srcdir)/services/cache/infra.h \
543  $(srcdir)/util/storage/lruhash.h $(srcdir)/util/locks.h $(srcdir)/util/log.h $(srcdir)/util/rtt.h \
544  $(srcdir)/util/storage/slabhash.h $(srcdir)/util/storage/lookup3.h $(srcdir)/util/data/dname.h \
545  $(srcdir)/util/net_help.h $(srcdir)/util/config_file.h $(srcdir)/iterator/iterator.h \
546  $(srcdir)/services/outbound_list.h $(srcdir)/util/data/msgreply.h $(srcdir)/util/data/packed_rrset.h \
547  $(srcdir)/util/module.h $(srcdir)/util/data/msgparse.h \
548  
549 rrset.lo rrset.o: $(srcdir)/services/cache/rrset.c config.h $(srcdir)/services/cache/rrset.h \
550  $(srcdir)/util/storage/lruhash.h $(srcdir)/util/locks.h $(srcdir)/util/log.h \
551  $(srcdir)/util/storage/slabhash.h $(srcdir)/util/data/packed_rrset.h \
552  $(srcdir)/util/config_file.h \
553  $(srcdir)/util/data/msgreply.h $(srcdir)/util/regional.h $(srcdir)/util/alloc.h
554 dname.lo dname.o: $(srcdir)/util/data/dname.c config.h $(srcdir)/util/data/dname.h \
555  $(srcdir)/util/storage/lruhash.h $(srcdir)/util/locks.h $(srcdir)/util/log.h \
556  $(srcdir)/util/data/msgparse.h \
557  $(srcdir)/util/storage/lookup3.h
558 msgencode.lo msgencode.o: $(srcdir)/util/data/msgencode.c config.h \
559  $(srcdir)/util/data/msgencode.h \
560  $(srcdir)/util/data/msgreply.h $(srcdir)/util/storage/lruhash.h $(srcdir)/util/locks.h $(srcdir)/util/log.h \
561  $(srcdir)/util/data/packed_rrset.h $(srcdir)/util/data/msgparse.h $(srcdir)/util/data/dname.h \
562  $(srcdir)/util/regional.h $(srcdir)/util/net_help.h
563 msgparse.lo msgparse.o: $(srcdir)/util/data/msgparse.c config.h \
564  $(srcdir)/util/data/msgparse.h \
565  $(srcdir)/util/storage/lruhash.h $(srcdir)/util/locks.h $(srcdir)/util/log.h $(srcdir)/util/net_help.h \
566  $(srcdir)/util/data/dname.h $(srcdir)/util/data/packed_rrset.h $(srcdir)/util/storage/lookup3.h \
567  $(srcdir)/util/regional.h
568 msgreply.lo msgreply.o: $(srcdir)/util/data/msgreply.c config.h \
569  $(srcdir)/util/data/msgreply.h \
570  $(srcdir)/util/storage/lruhash.h $(srcdir)/util/locks.h $(srcdir)/util/log.h $(srcdir)/util/data/packed_rrset.h \
571  $(srcdir)/util/storage/lookup3.h $(srcdir)/util/alloc.h $(srcdir)/util/netevent.h $(srcdir)/util/net_help.h \
572  $(srcdir)/util/data/dname.h $(srcdir)/util/regional.h $(srcdir)/util/data/msgparse.h \
573  $(srcdir)/util/data/msgencode.h
574 packed_rrset.lo packed_rrset.o: $(srcdir)/util/data/packed_rrset.c config.h \
575  $(srcdir)/util/data/packed_rrset.h $(srcdir)/util/storage/lruhash.h $(srcdir)/util/locks.h $(srcdir)/util/log.h \
576  $(srcdir)/util/data/dname.h $(srcdir)/util/storage/lookup3.h $(srcdir)/util/alloc.h $(srcdir)/util/regional.h \
577  $(srcdir)/util/net_help.h
578 iterator.lo iterator.o: $(srcdir)/iterator/iterator.c config.h \
579  $(srcdir)/iterator/iterator.h \
580  $(srcdir)/services/outbound_list.h $(srcdir)/util/data/msgreply.h $(srcdir)/util/storage/lruhash.h \
581  $(srcdir)/util/locks.h $(srcdir)/util/log.h $(srcdir)/util/data/packed_rrset.h $(srcdir)/util/module.h \
582  $(srcdir)/util/data/msgparse.h $(srcdir)/iterator/iter_utils.h $(srcdir)/iterator/iter_resptype.h \
583  $(srcdir)/iterator/iter_hints.h $(srcdir)/util/storage/dnstree.h $(srcdir)/util/rbtree.h \
584  $(srcdir)/iterator/iter_fwd.h $(srcdir)/iterator/iter_donotq.h $(srcdir)/iterator/iter_delegpt.h \
585  $(srcdir)/iterator/iter_scrub.h $(srcdir)/iterator/iter_priv.h $(srcdir)/validator/val_neg.h \
586  $(srcdir)/services/cache/dns.h $(srcdir)/services/cache/infra.h $(srcdir)/util/rtt.h $(srcdir)/util/netevent.h \
587  $(srcdir)/util/net_help.h $(srcdir)/util/regional.h $(srcdir)/util/data/dname.h $(srcdir)/util/data/msgencode.h \
588  $(srcdir)/util/fptr_wlist.h $(srcdir)/util/tube.h $(srcdir)/services/mesh.h $(srcdir)/services/modstack.h \
589  $(srcdir)/util/config_file.h
590 iter_delegpt.lo iter_delegpt.o: $(srcdir)/iterator/iter_delegpt.c config.h $(srcdir)/iterator/iter_delegpt.h \
591  $(srcdir)/util/log.h \
592  $(srcdir)/services/cache/dns.h \
593  $(srcdir)/util/storage/lruhash.h $(srcdir)/util/locks.h $(srcdir)/util/data/msgreply.h \
594  $(srcdir)/util/data/packed_rrset.h \
595  $(srcdir)/util/regional.h \
596  $(srcdir)/util/data/dname.h $(srcdir)/util/net_help.h
597 iter_donotq.lo iter_donotq.o: $(srcdir)/iterator/iter_donotq.c config.h $(srcdir)/iterator/iter_donotq.h \
598  $(srcdir)/util/storage/dnstree.h $(srcdir)/util/rbtree.h $(srcdir)/util/regional.h $(srcdir)/util/log.h \
599  $(srcdir)/util/config_file.h \
600  $(srcdir)/util/net_help.h
601 iter_fwd.lo iter_fwd.o: $(srcdir)/iterator/iter_fwd.c config.h \
602  $(srcdir)/iterator/iter_fwd.h \
603  $(srcdir)/util/rbtree.h $(srcdir)/iterator/iter_delegpt.h $(srcdir)/util/log.h $(srcdir)/util/config_file.h \
604  $(srcdir)/util/net_help.h $(srcdir)/util/data/dname.h $(srcdir)/util/storage/lruhash.h $(srcdir)/util/locks.h
605 iter_hints.lo iter_hints.o: $(srcdir)/iterator/iter_hints.c config.h \
606  $(srcdir)/iterator/iter_hints.h \
607  $(srcdir)/util/storage/dnstree.h $(srcdir)/util/rbtree.h $(srcdir)/iterator/iter_delegpt.h $(srcdir)/util/log.h \
608  $(srcdir)/util/config_file.h $(srcdir)/util/net_help.h $(srcdir)/util/data/dname.h \
609  $(srcdir)/util/storage/lruhash.h $(srcdir)/util/locks.h
610 iter_priv.lo iter_priv.o: $(srcdir)/iterator/iter_priv.c config.h \
611  $(srcdir)/iterator/iter_priv.h \
612  $(srcdir)/util/rbtree.h \
613  $(srcdir)/util/regional.h $(srcdir)/util/log.h $(srcdir)/util/config_file.h $(srcdir)/util/data/dname.h \
614  $(srcdir)/util/storage/lruhash.h $(srcdir)/util/locks.h $(srcdir)/util/data/msgparse.h \
615  $(srcdir)/util/net_help.h \
616  $(srcdir)/util/storage/dnstree.h
617 iter_resptype.lo iter_resptype.o: $(srcdir)/iterator/iter_resptype.c config.h \
618  $(srcdir)/iterator/iter_resptype.h $(srcdir)/iterator/iter_delegpt.h $(srcdir)/util/log.h \
619  $(srcdir)/services/cache/dns.h $(srcdir)/util/storage/lruhash.h $(srcdir)/util/locks.h \
620  $(srcdir)/util/data/msgreply.h $(srcdir)/util/data/packed_rrset.h $(srcdir)/util/net_help.h \
621  $(srcdir)/util/data/dname.h
622 iter_scrub.lo iter_scrub.o: $(srcdir)/iterator/iter_scrub.c config.h $(srcdir)/iterator/iter_scrub.h \
623  $(srcdir)/iterator/iterator.h \
624  $(srcdir)/services/outbound_list.h $(srcdir)/util/data/msgreply.h $(srcdir)/util/storage/lruhash.h \
625  $(srcdir)/util/locks.h $(srcdir)/util/log.h $(srcdir)/util/data/packed_rrset.h \
626  $(srcdir)/util/module.h \
627  $(srcdir)/util/data/msgparse.h \
628  $(srcdir)/iterator/iter_priv.h $(srcdir)/util/rbtree.h $(srcdir)/services/cache/rrset.h \
629  $(srcdir)/util/storage/slabhash.h $(srcdir)/util/net_help.h $(srcdir)/util/regional.h \
630  $(srcdir)/util/config_file.h $(srcdir)/util/data/dname.h $(srcdir)/util/alloc.h
631 iter_utils.lo iter_utils.o: $(srcdir)/iterator/iter_utils.c config.h $(srcdir)/iterator/iter_utils.h \
632  $(srcdir)/iterator/iter_resptype.h \
633  $(srcdir)/iterator/iterator.h \
634  $(srcdir)/services/outbound_list.h $(srcdir)/util/data/msgreply.h $(srcdir)/util/storage/lruhash.h \
635  $(srcdir)/util/locks.h $(srcdir)/util/log.h $(srcdir)/util/data/packed_rrset.h \
636  $(srcdir)/util/module.h \
637  $(srcdir)/util/data/msgparse.h \
638  $(srcdir)/iterator/iter_hints.h $(srcdir)/util/storage/dnstree.h $(srcdir)/util/rbtree.h \
639  $(srcdir)/iterator/iter_fwd.h $(srcdir)/iterator/iter_donotq.h $(srcdir)/iterator/iter_delegpt.h \
640  $(srcdir)/iterator/iter_priv.h $(srcdir)/services/cache/infra.h $(srcdir)/util/rtt.h \
641  $(srcdir)/services/cache/dns.h $(srcdir)/services/cache/rrset.h $(srcdir)/util/storage/slabhash.h \
642  $(srcdir)/util/net_help.h $(srcdir)/util/config_file.h $(srcdir)/util/regional.h $(srcdir)/util/data/dname.h \
643  $(srcdir)/util/random.h $(srcdir)/util/fptr_wlist.h $(srcdir)/util/netevent.h $(srcdir)/util/tube.h \
644  $(srcdir)/services/mesh.h $(srcdir)/services/modstack.h $(srcdir)/validator/val_anchor.h \
645  $(srcdir)/validator/val_kcache.h $(srcdir)/validator/val_kentry.h $(srcdir)/validator/val_utils.h
646 listen_dnsport.lo listen_dnsport.o: $(srcdir)/services/listen_dnsport.c config.h \
647  $(srcdir)/services/listen_dnsport.h $(srcdir)/util/netevent.h \
648  $(srcdir)/services/outside_network.h $(srcdir)/util/rbtree.h $(srcdir)/util/log.h $(srcdir)/util/config_file.h \
649  $(srcdir)/util/net_help.h
650 localzone.lo localzone.o: $(srcdir)/services/localzone.c config.h \
651  $(srcdir)/services/localzone.h \
652  $(srcdir)/util/rbtree.h $(srcdir)/util/locks.h $(srcdir)/util/log.h $(srcdir)/util/regional.h $(srcdir)/util/config_file.h \
653  $(srcdir)/util/data/dname.h $(srcdir)/util/storage/lruhash.h $(srcdir)/util/data/packed_rrset.h \
654  $(srcdir)/util/data/msgencode.h $(srcdir)/util/net_help.h $(srcdir)/util/data/msgreply.h \
655  $(srcdir)/util/data/msgparse.h
656 mesh.lo mesh.o: $(srcdir)/services/mesh.c config.h \
657  $(srcdir)/services/mesh.h \
658  $(srcdir)/util/rbtree.h $(srcdir)/util/netevent.h $(srcdir)/util/data/msgparse.h \
659  $(srcdir)/util/storage/lruhash.h $(srcdir)/util/locks.h $(srcdir)/util/log.h $(srcdir)/util/module.h \
660  $(srcdir)/util/data/msgreply.h $(srcdir)/util/data/packed_rrset.h $(srcdir)/services/modstack.h \
661  $(srcdir)/services/outbound_list.h $(srcdir)/services/cache/dns.h $(srcdir)/util/net_help.h \
662  $(srcdir)/util/regional.h $(srcdir)/util/data/msgencode.h $(srcdir)/util/timehist.h $(srcdir)/util/fptr_wlist.h \
663  $(srcdir)/util/tube.h $(srcdir)/util/alloc.h $(srcdir)/util/config_file.h
664 modstack.lo modstack.o: $(srcdir)/services/modstack.c config.h $(srcdir)/services/modstack.h \
665  $(srcdir)/util/module.h $(srcdir)/util/storage/lruhash.h $(srcdir)/util/locks.h $(srcdir)/util/log.h \
666  $(srcdir)/util/data/msgreply.h \
667  $(srcdir)/util/data/packed_rrset.h \
668  $(srcdir)/util/data/msgparse.h \
669  $(srcdir)/util/fptr_wlist.h \
670  $(srcdir)/util/netevent.h $(srcdir)/util/tube.h $(srcdir)/services/mesh.h $(srcdir)/util/rbtree.h \
671  $(srcdir)/iterator/iterator.h $(srcdir)/services/outbound_list.h $(srcdir)/validator/validator.h \
672  $(srcdir)/validator/val_utils.h $(PYTHONMOD_HEADER)
673 outbound_list.lo outbound_list.o: $(srcdir)/services/outbound_list.c config.h \
674  $(srcdir)/services/outbound_list.h $(srcdir)/services/outside_network.h $(srcdir)/util/rbtree.h \
675  $(srcdir)/util/netevent.h \
676  
677 outside_network.lo outside_network.o: $(srcdir)/services/outside_network.c config.h \
678  $(srcdir)/services/outside_network.h $(srcdir)/util/rbtree.h $(srcdir)/util/netevent.h \
679  $(srcdir)/services/listen_dnsport.h $(srcdir)/services/cache/infra.h $(srcdir)/util/storage/lruhash.h \
680  $(srcdir)/util/locks.h $(srcdir)/util/log.h $(srcdir)/util/rtt.h $(srcdir)/util/data/msgparse.h \
681  $(srcdir)/util/data/msgreply.h $(srcdir)/util/data/packed_rrset.h $(srcdir)/util/data/msgencode.h \
682  $(srcdir)/util/data/dname.h $(srcdir)/util/net_help.h $(srcdir)/util/random.h $(srcdir)/util/fptr_wlist.h \
683  $(srcdir)/util/module.h $(srcdir)/util/tube.h $(srcdir)/services/mesh.h $(srcdir)/services/modstack.h \
684  
685 alloc.lo alloc.o: $(srcdir)/util/alloc.c config.h $(srcdir)/util/alloc.h $(srcdir)/util/locks.h $(srcdir)/util/log.h \
686  $(srcdir)/util/regional.h \
687  $(srcdir)/util/data/packed_rrset.h $(srcdir)/util/storage/lruhash.h \
688  $(srcdir)/util/fptr_wlist.h \
689  $(srcdir)/util/netevent.h $(srcdir)/util/module.h $(srcdir)/util/data/msgreply.h $(srcdir)/util/data/msgparse.h \
690  $(srcdir)/util/tube.h \
691  $(srcdir)/services/mesh.h $(srcdir)/util/rbtree.h $(srcdir)/services/modstack.h
692 config_file.lo config_file.o: $(srcdir)/util/config_file.c config.h \
693  $(srcdir)/util/log.h \
694  $(srcdir)/util/configyyrename.h $(srcdir)/util/config_file.h util/configparser.h \
695  $(srcdir)/util/net_help.h $(srcdir)/util/data/msgparse.h $(srcdir)/util/storage/lruhash.h $(srcdir)/util/locks.h \
696  $(srcdir)/util/module.h $(srcdir)/util/data/msgreply.h $(srcdir)/util/data/packed_rrset.h \
697  $(srcdir)/util/regional.h $(srcdir)/util/fptr_wlist.h $(srcdir)/util/netevent.h $(srcdir)/util/tube.h \
698  $(srcdir)/services/mesh.h $(srcdir)/util/rbtree.h $(srcdir)/services/modstack.h $(srcdir)/util/data/dname.h \
699  $(srcdir)/util/iana_ports.inc
700 configlexer.lo configlexer.o: util/configlexer.c config.h $(srcdir)/util/configyyrename.h \
701  $(srcdir)/util/config_file.h util/configparser.h
702 configparser.lo configparser.o: util/configparser.c config.h $(srcdir)/util/configyyrename.h \
703  $(srcdir)/util/config_file.h $(srcdir)/util/net_help.h $(srcdir)/util/log.h \
704  
705 fptr_wlist.lo fptr_wlist.o: $(srcdir)/util/fptr_wlist.c config.h $(srcdir)/util/fptr_wlist.h \
706  $(srcdir)/util/netevent.h \
707  $(srcdir)/util/storage/lruhash.h \
708  $(srcdir)/util/locks.h $(srcdir)/util/log.h $(srcdir)/util/module.h $(srcdir)/util/data/msgreply.h \
709  $(srcdir)/util/data/packed_rrset.h \
710  $(srcdir)/util/data/msgparse.h \
711  $(srcdir)/util/tube.h \
712  $(srcdir)/services/mesh.h $(srcdir)/util/rbtree.h $(srcdir)/services/modstack.h $(srcdir)/util/mini_event.h \
713  $(srcdir)/util/rbtree.h $(srcdir)/daemon/worker.h $(srcdir)/util/alloc.h $(srcdir)/daemon/stats.h \
714  $(srcdir)/util/timehist.h $(srcdir)/daemon/remote.h \
715  $(srcdir)/services/outside_network.h $(srcdir)/services/localzone.h $(srcdir)/services/cache/infra.h \
716  $(srcdir)/util/rtt.h $(srcdir)/services/cache/rrset.h $(srcdir)/util/storage/slabhash.h \
717  $(srcdir)/iterator/iterator.h $(srcdir)/services/outbound_list.h $(srcdir)/iterator/iter_fwd.h \
718  $(srcdir)/validator/validator.h $(srcdir)/validator/val_utils.h $(srcdir)/validator/val_anchor.h \
719  $(srcdir)/validator/val_nsec3.h $(srcdir)/validator/val_sigcrypt.h $(srcdir)/validator/val_kentry.h \
720  $(srcdir)/validator/val_neg.h $(srcdir)/validator/autotrust.h $(srcdir)/util/storage/dnstree.h \
721  $(srcdir)/libunbound/libworker.h $(srcdir)/libunbound/context.h $(srcdir)/libunbound/unbound.h \
722  $(srcdir)/util/config_file.h $(PYTHONMOD_HEADER)
723 locks.lo locks.o: $(srcdir)/util/locks.c config.h $(srcdir)/util/locks.h $(srcdir)/util/log.h \
724  
725 log.lo log.o: $(srcdir)/util/log.c config.h $(srcdir)/util/log.h \
726  $(srcdir)/util/locks.h
727 mini_event.lo mini_event.o: $(srcdir)/util/mini_event.c config.h $(srcdir)/util/mini_event.h $(srcdir)/util/rbtree.h \
728  $(srcdir)/util/fptr_wlist.h $(srcdir)/util/netevent.h \
729  $(srcdir)/util/storage/lruhash.h \
730  $(srcdir)/util/locks.h $(srcdir)/util/log.h $(srcdir)/util/module.h $(srcdir)/util/data/msgreply.h \
731  $(srcdir)/util/data/packed_rrset.h \
732  $(srcdir)/util/data/msgparse.h \
733  $(srcdir)/util/tube.h \
734  $(srcdir)/services/mesh.h $(srcdir)/util/rbtree.h $(srcdir)/services/modstack.h
735 module.lo module.o: $(srcdir)/util/module.c config.h $(srcdir)/util/module.h $(srcdir)/util/storage/lruhash.h \
736  $(srcdir)/util/locks.h $(srcdir)/util/log.h \
737  $(srcdir)/util/data/msgreply.h \
738  $(srcdir)/util/data/packed_rrset.h \
739  $(srcdir)/util/data/msgparse.h \
740  
741 netevent.lo netevent.o: $(srcdir)/util/netevent.c config.h \
742  $(srcdir)/util/netevent.h \
743  $(srcdir)/util/log.h $(srcdir)/util/net_help.h $(srcdir)/util/fptr_wlist.h $(srcdir)/util/storage/lruhash.h \
744  $(srcdir)/util/locks.h $(srcdir)/util/module.h $(srcdir)/util/data/msgreply.h $(srcdir)/util/data/packed_rrset.h \
745  $(srcdir)/util/data/msgparse.h $(srcdir)/util/tube.h $(srcdir)/services/mesh.h $(srcdir)/util/rbtree.h \
746  $(srcdir)/services/modstack.h \
747  $(srcdir)/util/mini_event.h $(srcdir)/util/rbtree.h
748 net_help.lo net_help.o: $(srcdir)/util/net_help.c config.h \
749  $(srcdir)/util/net_help.h \
750  $(srcdir)/util/log.h $(srcdir)/util/data/dname.h $(srcdir)/util/storage/lruhash.h $(srcdir)/util/locks.h \
751  $(srcdir)/util/module.h $(srcdir)/util/data/msgreply.h $(srcdir)/util/data/packed_rrset.h \
752  $(srcdir)/util/data/msgparse.h $(srcdir)/util/regional.h \
753  
754 random.lo random.o: $(srcdir)/util/random.c config.h $(srcdir)/util/random.h $(srcdir)/util/log.h \
755  
756 rbtree.lo rbtree.o: $(srcdir)/util/rbtree.c config.h $(srcdir)/util/log.h \
757  $(srcdir)/util/fptr_wlist.h \
758  $(srcdir)/util/netevent.h $(srcdir)/util/storage/lruhash.h $(srcdir)/util/locks.h $(srcdir)/util/log.h \
759  $(srcdir)/util/module.h $(srcdir)/util/data/msgreply.h $(srcdir)/util/data/packed_rrset.h \
760  $(srcdir)/util/data/msgparse.h \
761  $(srcdir)/util/tube.h \
762  $(srcdir)/services/mesh.h $(srcdir)/util/rbtree.h $(srcdir)/services/modstack.h
763 regional.lo regional.o: $(srcdir)/util/regional.c config.h $(srcdir)/util/log.h \
764  $(srcdir)/util/regional.h
765 rtt.lo rtt.o: $(srcdir)/util/rtt.c config.h $(srcdir)/util/rtt.h $(srcdir)/util/log.h \
766  
767 dnstree.lo dnstree.o: $(srcdir)/util/storage/dnstree.c config.h $(srcdir)/util/storage/dnstree.h \
768  $(srcdir)/util/rbtree.h $(srcdir)/util/data/dname.h $(srcdir)/util/storage/lruhash.h $(srcdir)/util/locks.h \
769  $(srcdir)/util/log.h \
770  $(srcdir)/util/net_help.h
771 lookup3.lo lookup3.o: $(srcdir)/util/storage/lookup3.c config.h $(srcdir)/util/storage/lookup3.h
772 lruhash.lo lruhash.o: $(srcdir)/util/storage/lruhash.c config.h $(srcdir)/util/storage/lruhash.h \
773  $(srcdir)/util/locks.h $(srcdir)/util/log.h \
774  $(srcdir)/util/fptr_wlist.h \
775  $(srcdir)/util/netevent.h $(srcdir)/util/module.h $(srcdir)/util/data/msgreply.h \
776  $(srcdir)/util/data/packed_rrset.h \
777  $(srcdir)/util/data/msgparse.h \
778  $(srcdir)/util/tube.h \
779  $(srcdir)/services/mesh.h $(srcdir)/util/rbtree.h $(srcdir)/services/modstack.h
780 slabhash.lo slabhash.o: $(srcdir)/util/storage/slabhash.c config.h $(srcdir)/util/storage/slabhash.h \
781  $(srcdir)/util/storage/lruhash.h $(srcdir)/util/locks.h $(srcdir)/util/log.h \
782  
783 timehist.lo timehist.o: $(srcdir)/util/timehist.c config.h $(srcdir)/util/timehist.h $(srcdir)/util/log.h \
784  
785 tube.lo tube.o: $(srcdir)/util/tube.c config.h $(srcdir)/util/tube.h $(srcdir)/util/log.h \
786  $(srcdir)/util/net_help.h \
787  $(srcdir)/util/netevent.h $(srcdir)/util/fptr_wlist.h $(srcdir)/util/storage/lruhash.h $(srcdir)/util/locks.h \
788  $(srcdir)/util/module.h $(srcdir)/util/data/msgreply.h $(srcdir)/util/data/packed_rrset.h \
789  $(srcdir)/util/data/msgparse.h \
790  $(srcdir)/services/mesh.h \
791  $(srcdir)/util/rbtree.h $(srcdir)/services/modstack.h
792 winsock_event.lo winsock_event.o: $(srcdir)/util/winsock_event.c config.h
793 autotrust.lo autotrust.o: $(srcdir)/validator/autotrust.c config.h \
794  $(srcdir)/validator/autotrust.h \
795  $(srcdir)/util/rbtree.h $(srcdir)/util/data/packed_rrset.h $(srcdir)/util/storage/lruhash.h \
796  $(srcdir)/util/locks.h $(srcdir)/util/log.h $(srcdir)/validator/val_anchor.h $(srcdir)/validator/val_utils.h \
797  $(srcdir)/validator/val_sigcrypt.h $(srcdir)/util/data/dname.h $(srcdir)/util/module.h \
798  $(srcdir)/util/data/msgreply.h $(srcdir)/util/data/msgparse.h $(srcdir)/util/net_help.h \
799  $(srcdir)/util/config_file.h $(srcdir)/util/regional.h $(srcdir)/util/random.h $(srcdir)/services/mesh.h \
800  $(srcdir)/util/netevent.h $(srcdir)/services/modstack.h $(srcdir)/services/cache/rrset.h \
801  $(srcdir)/util/storage/slabhash.h $(srcdir)/validator/val_kcache.h
802 val_anchor.lo val_anchor.o: $(srcdir)/validator/val_anchor.c config.h \
803  $(srcdir)/validator/val_anchor.h \
804  $(srcdir)/util/rbtree.h $(srcdir)/util/locks.h $(srcdir)/util/log.h $(srcdir)/validator/val_sigcrypt.h \
805  $(srcdir)/util/data/packed_rrset.h $(srcdir)/util/storage/lruhash.h $(srcdir)/validator/autotrust.h \
806  $(srcdir)/util/data/dname.h $(srcdir)/util/net_help.h $(srcdir)/util/config_file.h
807 validator.lo validator.o: $(srcdir)/validator/validator.c config.h \
808  $(srcdir)/validator/validator.h \
809  $(srcdir)/util/module.h $(srcdir)/util/storage/lruhash.h $(srcdir)/util/locks.h $(srcdir)/util/log.h \
810  $(srcdir)/util/data/msgreply.h $(srcdir)/util/data/packed_rrset.h $(srcdir)/util/data/msgparse.h \
811  $(srcdir)/validator/val_utils.h $(srcdir)/validator/val_anchor.h $(srcdir)/util/rbtree.h \
812  $(srcdir)/validator/val_kcache.h $(srcdir)/util/storage/slabhash.h $(srcdir)/validator/val_kentry.h \
813  $(srcdir)/validator/val_nsec.h $(srcdir)/validator/val_nsec3.h $(srcdir)/validator/val_neg.h \
814  $(srcdir)/validator/val_sigcrypt.h $(srcdir)/validator/autotrust.h $(srcdir)/services/cache/dns.h \
815  $(srcdir)/util/data/dname.h $(srcdir)/util/net_help.h $(srcdir)/util/regional.h $(srcdir)/util/config_file.h \
816  $(srcdir)/util/fptr_wlist.h $(srcdir)/util/netevent.h $(srcdir)/util/tube.h $(srcdir)/services/mesh.h \
817  $(srcdir)/services/modstack.h
818 val_kcache.lo val_kcache.o: $(srcdir)/validator/val_kcache.c config.h $(srcdir)/validator/val_kcache.h \
819  $(srcdir)/util/storage/slabhash.h $(srcdir)/util/storage/lruhash.h $(srcdir)/util/locks.h $(srcdir)/util/log.h \
820  $(srcdir)/validator/val_kentry.h \
821  $(srcdir)/util/config_file.h $(srcdir)/util/data/dname.h $(srcdir)/util/module.h $(srcdir)/util/data/msgreply.h \
822  $(srcdir)/util/data/packed_rrset.h \
823  $(srcdir)/util/data/msgparse.h \
824  
825 val_kentry.lo val_kentry.o: $(srcdir)/validator/val_kentry.c config.h \
826  $(srcdir)/validator/val_kentry.h \
827  $(srcdir)/util/storage/lruhash.h $(srcdir)/util/locks.h $(srcdir)/util/log.h $(srcdir)/util/data/packed_rrset.h \
828  $(srcdir)/util/data/dname.h $(srcdir)/util/storage/lookup3.h $(srcdir)/util/regional.h $(srcdir)/util/net_help.h
829 val_neg.lo val_neg.o: $(srcdir)/validator/val_neg.c config.h \
830  $(srcdir)/validator/val_neg.h $(srcdir)/util/locks.h $(srcdir)/util/log.h \
831  $(srcdir)/util/rbtree.h \
832  $(srcdir)/validator/val_nsec.h $(srcdir)/util/data/packed_rrset.h $(srcdir)/util/storage/lruhash.h \
833  $(srcdir)/validator/val_nsec3.h \
834  $(srcdir)/validator/val_utils.h $(srcdir)/util/data/dname.h $(srcdir)/util/data/msgreply.h \
835  $(srcdir)/util/net_help.h $(srcdir)/util/config_file.h $(srcdir)/services/cache/rrset.h \
836  $(srcdir)/util/storage/slabhash.h $(srcdir)/services/cache/dns.h
837 val_nsec3.lo val_nsec3.o: $(srcdir)/validator/val_nsec3.c config.h \
838  $(srcdir)/validator/val_nsec3.h $(srcdir)/util/rbtree.h $(srcdir)/util/data/packed_rrset.h \
839  $(srcdir)/util/storage/lruhash.h $(srcdir)/util/locks.h $(srcdir)/util/log.h \
840  $(srcdir)/validator/validator.h \
841  $(srcdir)/util/module.h $(srcdir)/util/data/msgreply.h $(srcdir)/util/data/msgparse.h \
842  $(srcdir)/validator/val_utils.h \
843  $(srcdir)/validator/val_kentry.h $(srcdir)/services/cache/rrset.h $(srcdir)/util/storage/slabhash.h \
844  $(srcdir)/util/regional.h $(srcdir)/util/net_help.h $(srcdir)/util/data/dname.h $(srcdir)/validator/val_nsec.h
845 val_nsec.lo val_nsec.o: $(srcdir)/validator/val_nsec.c config.h \
846  $(srcdir)/validator/val_nsec.h \
847  $(srcdir)/util/data/packed_rrset.h $(srcdir)/util/storage/lruhash.h $(srcdir)/util/locks.h $(srcdir)/util/log.h \
848  $(srcdir)/validator/val_utils.h $(srcdir)/util/data/msgreply.h $(srcdir)/util/data/dname.h \
849  $(srcdir)/util/net_help.h $(srcdir)/util/module.h $(srcdir)/util/data/msgparse.h \
850  $(srcdir)/services/cache/rrset.h $(srcdir)/util/storage/slabhash.h
851 val_sigcrypt.lo val_sigcrypt.o: $(srcdir)/validator/val_sigcrypt.c config.h \
852  $(srcdir)/validator/val_sigcrypt.h \
853  $(srcdir)/util/data/packed_rrset.h $(srcdir)/util/storage/lruhash.h $(srcdir)/util/locks.h $(srcdir)/util/log.h \
854  $(srcdir)/validator/validator.h $(srcdir)/util/module.h $(srcdir)/util/data/msgreply.h \
855  $(srcdir)/util/data/msgparse.h $(srcdir)/validator/val_utils.h $(srcdir)/util/data/dname.h \
856  $(srcdir)/util/rbtree.h $(srcdir)/util/net_help.h $(srcdir)/util/regional.h \
857  
858 val_utils.lo val_utils.o: $(srcdir)/validator/val_utils.c config.h $(srcdir)/validator/val_utils.h \
859  $(srcdir)/util/data/packed_rrset.h $(srcdir)/util/storage/lruhash.h $(srcdir)/util/locks.h $(srcdir)/util/log.h \
860  $(srcdir)/validator/validator.h \
861  $(srcdir)/util/module.h $(srcdir)/util/data/msgreply.h $(srcdir)/util/data/msgparse.h \
862  $(srcdir)/validator/val_kentry.h \
863  $(srcdir)/validator/val_sigcrypt.h $(srcdir)/validator/val_anchor.h $(srcdir)/util/rbtree.h \
864  $(srcdir)/validator/val_nsec.h $(srcdir)/validator/val_neg.h $(srcdir)/services/cache/rrset.h \
865  $(srcdir)/util/storage/slabhash.h $(srcdir)/services/cache/dns.h $(srcdir)/util/data/dname.h \
866  $(srcdir)/util/net_help.h $(srcdir)/util/regional.h $(srcdir)/util/config_file.h
867 checklocks.lo checklocks.o: $(srcdir)/testcode/checklocks.c config.h $(srcdir)/util/locks.h $(srcdir)/util/log.h \
868  $(srcdir)/testcode/checklocks.h
869 unitanchor.lo unitanchor.o: $(srcdir)/testcode/unitanchor.c config.h \
870  $(srcdir)/util/log.h \
871  $(srcdir)/util/data/dname.h $(srcdir)/util/storage/lruhash.h $(srcdir)/util/locks.h \
872  $(srcdir)/testcode/unitmain.h $(srcdir)/validator/val_anchor.h $(srcdir)/util/rbtree.h
873 unitdname.lo unitdname.o: $(srcdir)/testcode/unitdname.c config.h \
874  $(srcdir)/util/log.h \
875  $(srcdir)/testcode/unitmain.h $(srcdir)/util/data/dname.h $(srcdir)/util/storage/lruhash.h \
876  $(srcdir)/util/locks.h
877 unitlruhash.lo unitlruhash.o: $(srcdir)/testcode/unitlruhash.c config.h $(srcdir)/testcode/unitmain.h \
878  $(srcdir)/util/log.h \
879  $(srcdir)/util/storage/lruhash.h \
880  $(srcdir)/util/locks.h $(srcdir)/util/storage/slabhash.h
881 unitmain.lo unitmain.o: $(srcdir)/testcode/unitmain.c config.h \
882  $(srcdir)/util/log.h \
883  $(srcdir)/testcode/unitmain.h $(srcdir)/util/alloc.h $(srcdir)/util/locks.h $(srcdir)/util/net_help.h \
884  $(srcdir)/util/config_file.h $(srcdir)/util/rtt.h $(srcdir)/services/cache/infra.h \
885  $(srcdir)/util/storage/lruhash.h $(srcdir)/util/random.h
886 unitmsgparse.lo unitmsgparse.o: $(srcdir)/testcode/unitmsgparse.c config.h \
887  $(srcdir)/util/log.h \
888  $(srcdir)/testcode/unitmain.h $(srcdir)/util/data/msgparse.h $(srcdir)/util/storage/lruhash.h \
889  $(srcdir)/util/locks.h $(srcdir)/util/data/msgreply.h $(srcdir)/util/data/packed_rrset.h \
890  $(srcdir)/util/data/msgencode.h $(srcdir)/util/data/dname.h $(srcdir)/util/alloc.h $(srcdir)/util/regional.h \
891  $(srcdir)/util/net_help.h $(srcdir)/testcode/readhex.h
892 unitneg.lo unitneg.o: $(srcdir)/testcode/unitneg.c config.h $(srcdir)/util/log.h \
893  $(srcdir)/util/net_help.h \
894  $(srcdir)/util/data/packed_rrset.h $(srcdir)/util/storage/lruhash.h $(srcdir)/util/locks.h \
895  $(srcdir)/util/data/dname.h \
896  $(srcdir)/testcode/unitmain.h $(srcdir)/validator/val_neg.h $(srcdir)/util/rbtree.h
897 unitregional.lo unitregional.o: $(srcdir)/testcode/unitregional.c config.h $(srcdir)/testcode/unitmain.h \
898  $(srcdir)/util/log.h \
899  $(srcdir)/util/regional.h
900 unitslabhash.lo unitslabhash.o: $(srcdir)/testcode/unitslabhash.c config.h $(srcdir)/testcode/unitmain.h \
901  $(srcdir)/util/log.h \
902  $(srcdir)/util/storage/slabhash.h $(srcdir)/util/storage/lruhash.h $(srcdir)/util/locks.h
903 unitverify.lo unitverify.o: $(srcdir)/testcode/unitverify.c config.h $(srcdir)/util/log.h \
904  $(srcdir)/testcode/unitmain.h \
905  $(srcdir)/validator/val_sigcrypt.h $(srcdir)/util/data/packed_rrset.h $(srcdir)/util/storage/lruhash.h \
906  $(srcdir)/util/locks.h \
907  $(srcdir)/validator/val_nsec.h \
908  $(srcdir)/validator/val_nsec3.h $(srcdir)/util/rbtree.h $(srcdir)/validator/validator.h $(srcdir)/util/module.h \
909  $(srcdir)/util/data/msgreply.h $(srcdir)/util/data/msgparse.h \
910  $(srcdir)/validator/val_utils.h \
911  $(srcdir)/testcode/ldns-testpkts.h \
912  $(srcdir)/util/data/dname.h \
913  $(srcdir)/util/regional.h $(srcdir)/util/alloc.h $(srcdir)/util/net_help.h $(srcdir)/util/config_file.h
914 readhex.lo readhex.o: $(srcdir)/testcode/readhex.c config.h $(srcdir)/testcode/readhex.h \
915  $(srcdir)/util/log.h
916 ldns-testpkts.lo ldns-testpkts.o: $(srcdir)/testcode/ldns-testpkts.c config.h \
917  $(srcdir)/testcode/ldns-testpkts.h
918 acl_list.lo acl_list.o: $(srcdir)/daemon/acl_list.c config.h $(srcdir)/daemon/acl_list.h \
919  $(srcdir)/util/storage/dnstree.h $(srcdir)/util/rbtree.h $(srcdir)/util/regional.h $(srcdir)/util/log.h \
920  $(srcdir)/util/config_file.h \
921  $(srcdir)/util/net_help.h
922 cachedump.lo cachedump.o: $(srcdir)/daemon/cachedump.c config.h \
923  $(srcdir)/daemon/cachedump.h \
924  $(srcdir)/daemon/remote.h $(srcdir)/daemon/worker.h $(srcdir)/util/netevent.h $(srcdir)/util/locks.h $(srcdir)/util/log.h \
925  $(srcdir)/util/alloc.h $(srcdir)/util/data/msgreply.h $(srcdir)/util/storage/lruhash.h \
926  $(srcdir)/util/data/packed_rrset.h $(srcdir)/util/data/msgparse.h $(srcdir)/daemon/stats.h \
927  $(srcdir)/util/timehist.h $(srcdir)/util/module.h $(srcdir)/daemon/daemon.h $(srcdir)/services/modstack.h \
928  $(srcdir)/services/cache/rrset.h $(srcdir)/util/storage/slabhash.h $(srcdir)/services/cache/dns.h \
929  $(srcdir)/services/cache/infra.h $(srcdir)/util/rtt.h $(srcdir)/util/regional.h $(srcdir)/util/net_help.h \
930  $(srcdir)/util/data/dname.h $(srcdir)/iterator/iterator.h $(srcdir)/services/outbound_list.h \
931  $(srcdir)/iterator/iter_delegpt.h $(srcdir)/iterator/iter_utils.h $(srcdir)/iterator/iter_resptype.h \
932  $(srcdir)/iterator/iter_fwd.h $(srcdir)/util/rbtree.h $(srcdir)/iterator/iter_hints.h \
933  $(srcdir)/util/storage/dnstree.h
934 daemon.lo daemon.o: $(srcdir)/daemon/daemon.c config.h \
935  $(srcdir)/daemon/daemon.h \
936  $(srcdir)/util/locks.h $(srcdir)/util/log.h $(srcdir)/util/alloc.h $(srcdir)/services/modstack.h $(srcdir)/daemon/worker.h \
937  $(srcdir)/util/netevent.h $(srcdir)/util/data/msgreply.h $(srcdir)/util/storage/lruhash.h \
938  $(srcdir)/util/data/packed_rrset.h $(srcdir)/util/data/msgparse.h $(srcdir)/daemon/stats.h \
939  $(srcdir)/util/timehist.h $(srcdir)/util/module.h $(srcdir)/daemon/remote.h $(srcdir)/daemon/acl_list.h \
940  $(srcdir)/util/storage/dnstree.h $(srcdir)/util/rbtree.h $(srcdir)/util/config_file.h \
941  $(srcdir)/util/storage/lookup3.h $(srcdir)/util/storage/slabhash.h $(srcdir)/services/listen_dnsport.h \
942  $(srcdir)/services/cache/rrset.h $(srcdir)/services/cache/infra.h $(srcdir)/util/rtt.h \
943  $(srcdir)/services/localzone.h $(srcdir)/util/random.h $(srcdir)/util/tube.h
944 remote.lo remote.o: $(srcdir)/daemon/remote.c config.h \
945  $(srcdir)/daemon/remote.h \
946  $(srcdir)/daemon/worker.h $(srcdir)/util/netevent.h $(srcdir)/util/locks.h $(srcdir)/util/log.h $(srcdir)/util/alloc.h \
947  $(srcdir)/util/data/msgreply.h $(srcdir)/util/storage/lruhash.h $(srcdir)/util/data/packed_rrset.h \
948  $(srcdir)/util/data/msgparse.h $(srcdir)/daemon/stats.h $(srcdir)/util/timehist.h $(srcdir)/util/module.h \
949  $(srcdir)/daemon/daemon.h $(srcdir)/services/modstack.h $(srcdir)/daemon/cachedump.h \
950  $(srcdir)/util/config_file.h $(srcdir)/util/net_help.h $(srcdir)/services/listen_dnsport.h \
951  $(srcdir)/services/cache/rrset.h $(srcdir)/util/storage/slabhash.h $(srcdir)/services/cache/infra.h \
952  $(srcdir)/util/rtt.h $(srcdir)/services/mesh.h $(srcdir)/util/rbtree.h $(srcdir)/services/localzone.h \
953  $(srcdir)/util/fptr_wlist.h $(srcdir)/util/tube.h $(srcdir)/util/data/dname.h $(srcdir)/validator/validator.h \
954  $(srcdir)/validator/val_utils.h $(srcdir)/validator/val_kcache.h $(srcdir)/validator/val_kentry.h \
955  $(srcdir)/validator/val_anchor.h $(srcdir)/iterator/iterator.h $(srcdir)/services/outbound_list.h \
956  $(srcdir)/iterator/iter_fwd.h $(srcdir)/iterator/iter_hints.h $(srcdir)/util/storage/dnstree.h \
957  $(srcdir)/iterator/iter_delegpt.h $(srcdir)/services/outside_network.h
958 stats.lo stats.o: $(srcdir)/daemon/stats.c config.h \
959  $(srcdir)/daemon/stats.h \
960  $(srcdir)/util/timehist.h $(srcdir)/daemon/worker.h $(srcdir)/util/netevent.h $(srcdir)/util/locks.h $(srcdir)/util/log.h \
961  $(srcdir)/util/alloc.h $(srcdir)/util/data/msgreply.h $(srcdir)/util/storage/lruhash.h \
962  $(srcdir)/util/data/packed_rrset.h $(srcdir)/util/data/msgparse.h $(srcdir)/util/module.h \
963  $(srcdir)/daemon/daemon.h $(srcdir)/services/modstack.h $(srcdir)/services/mesh.h $(srcdir)/util/rbtree.h \
964  $(srcdir)/services/outside_network.h $(srcdir)/util/config_file.h $(srcdir)/util/tube.h \
965  $(srcdir)/util/net_help.h $(srcdir)/validator/validator.h $(srcdir)/validator/val_utils.h
966 unbound.lo unbound.o: $(srcdir)/daemon/unbound.c config.h $(srcdir)/util/log.h \
967  $(srcdir)/daemon/daemon.h \
968  $(srcdir)/util/locks.h $(srcdir)/util/alloc.h $(srcdir)/services/modstack.h $(srcdir)/daemon/remote.h \
969  $(srcdir)/util/config_file.h $(srcdir)/util/storage/slabhash.h $(srcdir)/util/storage/lruhash.h \
970  $(srcdir)/services/listen_dnsport.h $(srcdir)/util/netevent.h $(srcdir)/services/cache/rrset.h \
971  $(srcdir)/util/data/packed_rrset.h \
972  $(srcdir)/services/cache/infra.h \
973  $(srcdir)/util/rtt.h $(srcdir)/util/data/msgreply.h $(srcdir)/util/module.h $(srcdir)/util/data/msgparse.h \
974  $(srcdir)/util/net_help.h \
975  $(srcdir)/util/mini_event.h $(srcdir)/util/rbtree.h
976 worker.lo worker.o: $(srcdir)/daemon/worker.c config.h \
977  $(srcdir)/util/log.h \
978  $(srcdir)/util/net_help.h $(srcdir)/util/random.h $(srcdir)/daemon/worker.h $(srcdir)/util/netevent.h \
979  $(srcdir)/util/locks.h $(srcdir)/util/alloc.h $(srcdir)/util/data/msgreply.h $(srcdir)/util/storage/lruhash.h \
980  $(srcdir)/util/data/packed_rrset.h $(srcdir)/util/data/msgparse.h $(srcdir)/daemon/stats.h \
981  $(srcdir)/util/timehist.h $(srcdir)/util/module.h $(srcdir)/daemon/daemon.h $(srcdir)/services/modstack.h \
982  $(srcdir)/daemon/remote.h \
983  $(srcdir)/daemon/acl_list.h $(srcdir)/util/storage/dnstree.h $(srcdir)/util/rbtree.h \
984  $(srcdir)/util/config_file.h $(srcdir)/util/regional.h $(srcdir)/util/storage/slabhash.h \
985  $(srcdir)/services/listen_dnsport.h $(srcdir)/services/outside_network.h \
986  $(srcdir)/services/outbound_list.h $(srcdir)/services/cache/rrset.h $(srcdir)/services/cache/infra.h \
987  $(srcdir)/util/rtt.h $(srcdir)/services/cache/dns.h $(srcdir)/services/mesh.h $(srcdir)/services/localzone.h \
988  $(srcdir)/util/data/msgencode.h $(srcdir)/util/data/dname.h $(srcdir)/util/fptr_wlist.h $(srcdir)/util/tube.h \
989  $(srcdir)/iterator/iter_fwd.h $(srcdir)/iterator/iter_hints.h $(srcdir)/validator/autotrust.h \
990  $(srcdir)/validator/val_anchor.h
991 testbound.lo testbound.o: $(srcdir)/testcode/testbound.c config.h $(srcdir)/testcode/ldns-testpkts.h \
992  $(srcdir)/testcode/replay.h \
993  $(srcdir)/util/netevent.h $(srcdir)/util/rbtree.h $(srcdir)/testcode/fake_event.h $(srcdir)/daemon/remote.h \
994  $(srcdir)/util/config_file.h $(srcdir)/daemon/unbound.c $(srcdir)/util/log.h $(srcdir)/daemon/daemon.h \
995  $(srcdir)/util/locks.h $(srcdir)/util/alloc.h $(srcdir)/services/modstack.h $(srcdir)/util/storage/slabhash.h \
996  $(srcdir)/util/storage/lruhash.h $(srcdir)/services/listen_dnsport.h $(srcdir)/services/cache/rrset.h \
997  $(srcdir)/util/data/packed_rrset.h $(srcdir)/services/cache/infra.h $(srcdir)/util/rtt.h \
998  $(srcdir)/util/data/msgreply.h $(srcdir)/util/module.h $(srcdir)/util/data/msgparse.h $(srcdir)/util/net_help.h \
999  $(srcdir)/util/mini_event.h $(srcdir)/util/rbtree.h
1000 ldns-testpkts.lo ldns-testpkts.o: $(srcdir)/testcode/ldns-testpkts.c config.h \
1001  $(srcdir)/testcode/ldns-testpkts.h
1002 worker.lo worker.o: $(srcdir)/daemon/worker.c config.h \
1003  $(srcdir)/util/log.h \
1004  $(srcdir)/util/net_help.h $(srcdir)/util/random.h $(srcdir)/daemon/worker.h $(srcdir)/util/netevent.h \
1005  $(srcdir)/util/locks.h $(srcdir)/util/alloc.h $(srcdir)/util/data/msgreply.h $(srcdir)/util/storage/lruhash.h \
1006  $(srcdir)/util/data/packed_rrset.h $(srcdir)/util/data/msgparse.h $(srcdir)/daemon/stats.h \
1007  $(srcdir)/util/timehist.h $(srcdir)/util/module.h $(srcdir)/daemon/daemon.h $(srcdir)/services/modstack.h \
1008  $(srcdir)/daemon/remote.h \
1009  $(srcdir)/daemon/acl_list.h $(srcdir)/util/storage/dnstree.h $(srcdir)/util/rbtree.h \
1010  $(srcdir)/util/config_file.h $(srcdir)/util/regional.h $(srcdir)/util/storage/slabhash.h \
1011  $(srcdir)/services/listen_dnsport.h $(srcdir)/services/outside_network.h \
1012  $(srcdir)/services/outbound_list.h $(srcdir)/services/cache/rrset.h $(srcdir)/services/cache/infra.h \
1013  $(srcdir)/util/rtt.h $(srcdir)/services/cache/dns.h $(srcdir)/services/mesh.h $(srcdir)/services/localzone.h \
1014  $(srcdir)/util/data/msgencode.h $(srcdir)/util/data/dname.h $(srcdir)/util/fptr_wlist.h $(srcdir)/util/tube.h \
1015  $(srcdir)/iterator/iter_fwd.h $(srcdir)/iterator/iter_hints.h $(srcdir)/validator/autotrust.h \
1016  $(srcdir)/validator/val_anchor.h
1017 acl_list.lo acl_list.o: $(srcdir)/daemon/acl_list.c config.h $(srcdir)/daemon/acl_list.h \
1018  $(srcdir)/util/storage/dnstree.h $(srcdir)/util/rbtree.h $(srcdir)/util/regional.h $(srcdir)/util/log.h \
1019  $(srcdir)/util/config_file.h \
1020  $(srcdir)/util/net_help.h
1021 daemon.lo daemon.o: $(srcdir)/daemon/daemon.c config.h \
1022  $(srcdir)/daemon/daemon.h \
1023  $(srcdir)/util/locks.h $(srcdir)/util/log.h $(srcdir)/util/alloc.h $(srcdir)/services/modstack.h $(srcdir)/daemon/worker.h \
1024  $(srcdir)/util/netevent.h $(srcdir)/util/data/msgreply.h $(srcdir)/util/storage/lruhash.h \
1025  $(srcdir)/util/data/packed_rrset.h $(srcdir)/util/data/msgparse.h $(srcdir)/daemon/stats.h \
1026  $(srcdir)/util/timehist.h $(srcdir)/util/module.h $(srcdir)/daemon/remote.h $(srcdir)/daemon/acl_list.h \
1027  $(srcdir)/util/storage/dnstree.h $(srcdir)/util/rbtree.h $(srcdir)/util/config_file.h \
1028  $(srcdir)/util/storage/lookup3.h $(srcdir)/util/storage/slabhash.h $(srcdir)/services/listen_dnsport.h \
1029  $(srcdir)/services/cache/rrset.h $(srcdir)/services/cache/infra.h $(srcdir)/util/rtt.h \
1030  $(srcdir)/services/localzone.h $(srcdir)/util/random.h $(srcdir)/util/tube.h
1031 stats.lo stats.o: $(srcdir)/daemon/stats.c config.h \
1032  $(srcdir)/daemon/stats.h \
1033  $(srcdir)/util/timehist.h $(srcdir)/daemon/worker.h $(srcdir)/util/netevent.h $(srcdir)/util/locks.h $(srcdir)/util/log.h \
1034  $(srcdir)/util/alloc.h $(srcdir)/util/data/msgreply.h $(srcdir)/util/storage/lruhash.h \
1035  $(srcdir)/util/data/packed_rrset.h $(srcdir)/util/data/msgparse.h $(srcdir)/util/module.h \
1036  $(srcdir)/daemon/daemon.h $(srcdir)/services/modstack.h $(srcdir)/services/mesh.h $(srcdir)/util/rbtree.h \
1037  $(srcdir)/services/outside_network.h $(srcdir)/util/config_file.h $(srcdir)/util/tube.h \
1038  $(srcdir)/util/net_help.h $(srcdir)/validator/validator.h $(srcdir)/validator/val_utils.h
1039 replay.lo replay.o: $(srcdir)/testcode/replay.c config.h $(srcdir)/util/log.h \
1040  $(srcdir)/util/net_help.h \
1041  $(srcdir)/util/config_file.h $(srcdir)/testcode/replay.h $(srcdir)/util/netevent.h \
1042  $(srcdir)/testcode/ldns-testpkts.h \
1043  $(srcdir)/util/rbtree.h \
1044  $(srcdir)/testcode/fake_event.h
1045 fake_event.lo fake_event.o: $(srcdir)/testcode/fake_event.c config.h $(srcdir)/testcode/fake_event.h \
1046  $(srcdir)/util/netevent.h \
1047  $(srcdir)/util/net_help.h \
1048  $(srcdir)/util/log.h $(srcdir)/util/data/msgparse.h $(srcdir)/util/storage/lruhash.h $(srcdir)/util/locks.h \
1049  $(srcdir)/util/data/msgreply.h \
1050  $(srcdir)/util/data/packed_rrset.h $(srcdir)/util/data/msgencode.h $(srcdir)/util/data/dname.h \
1051  $(srcdir)/util/config_file.h $(srcdir)/services/listen_dnsport.h $(srcdir)/services/outside_network.h \
1052  $(srcdir)/util/rbtree.h $(srcdir)/services/cache/infra.h $(srcdir)/util/rtt.h $(srcdir)/testcode/replay.h \
1053  $(srcdir)/testcode/ldns-testpkts.h \
1054  $(srcdir)/util/fptr_wlist.h \
1055  $(srcdir)/util/module.h $(srcdir)/util/tube.h $(srcdir)/services/mesh.h $(srcdir)/services/modstack.h
1056 lock_verify.lo lock_verify.o: $(srcdir)/testcode/lock_verify.c config.h $(srcdir)/util/log.h \
1057  $(srcdir)/util/rbtree.h \
1058  $(srcdir)/util/locks.h $(srcdir)/util/fptr_wlist.h $(srcdir)/util/netevent.h $(srcdir)/util/storage/lruhash.h \
1059  $(srcdir)/util/module.h $(srcdir)/util/data/msgreply.h $(srcdir)/util/data/packed_rrset.h \
1060  $(srcdir)/util/data/msgparse.h \
1061  $(srcdir)/util/tube.h \
1062  $(srcdir)/services/mesh.h $(srcdir)/services/modstack.h
1063 pktview.lo pktview.o: $(srcdir)/testcode/pktview.c config.h \
1064  $(srcdir)/util/log.h \
1065  $(srcdir)/util/data/dname.h $(srcdir)/util/storage/lruhash.h $(srcdir)/util/locks.h \
1066  $(srcdir)/util/data/msgparse.h $(srcdir)/testcode/unitmain.h $(srcdir)/testcode/readhex.h
1067 readhex.lo readhex.o: $(srcdir)/testcode/readhex.c config.h $(srcdir)/testcode/readhex.h \
1068  $(srcdir)/util/log.h
1069 signit.lo signit.o: $(srcdir)/testcode/signit.c config.h \
1070  $(srcdir)/util/log.h \
1071  $(srcdir)/util/config_file.h $(srcdir)/util/net_help.h
1072 memstats.lo memstats.o: $(srcdir)/testcode/memstats.c config.h $(srcdir)/util/log.h \
1073  $(srcdir)/util/rbtree.h \
1074  $(srcdir)/util/locks.h $(srcdir)/util/fptr_wlist.h $(srcdir)/util/netevent.h $(srcdir)/util/storage/lruhash.h \
1075  $(srcdir)/util/module.h $(srcdir)/util/data/msgreply.h $(srcdir)/util/data/packed_rrset.h \
1076  $(srcdir)/util/data/msgparse.h \
1077  $(srcdir)/util/tube.h \
1078  $(srcdir)/services/mesh.h $(srcdir)/services/modstack.h
1079 unbound-checkconf.lo unbound-checkconf.o: $(srcdir)/smallapp/unbound-checkconf.c config.h $(srcdir)/util/log.h \
1080  $(srcdir)/util/config_file.h \
1081  $(srcdir)/util/module.h $(srcdir)/util/storage/lruhash.h $(srcdir)/util/locks.h $(srcdir)/util/data/msgreply.h \
1082  $(srcdir)/util/data/packed_rrset.h \
1083  $(srcdir)/util/data/msgparse.h \
1084  $(srcdir)/util/net_help.h \
1085  $(srcdir)/util/regional.h $(srcdir)/iterator/iterator.h $(srcdir)/services/outbound_list.h \
1086  $(srcdir)/iterator/iter_fwd.h $(srcdir)/util/rbtree.h $(srcdir)/iterator/iter_hints.h \
1087  $(srcdir)/util/storage/dnstree.h $(srcdir)/validator/validator.h $(srcdir)/validator/val_utils.h \
1088  $(srcdir)/services/localzone.h $(PYTHONMOD_HEADER)
1089 worker_cb.lo worker_cb.o: $(srcdir)/smallapp/worker_cb.c config.h $(srcdir)/util/log.h \
1090  $(srcdir)/services/mesh.h \
1091  $(srcdir)/util/rbtree.h $(srcdir)/util/netevent.h $(srcdir)/util/data/msgparse.h \
1092  $(srcdir)/util/storage/lruhash.h $(srcdir)/util/locks.h \
1093  $(srcdir)/util/module.h \
1094  $(srcdir)/util/data/msgreply.h $(srcdir)/util/data/packed_rrset.h $(srcdir)/services/modstack.h
1095 context.lo context.o: $(srcdir)/libunbound/context.c config.h $(srcdir)/libunbound/context.h \
1096  $(srcdir)/util/locks.h $(srcdir)/util/log.h \
1097  $(srcdir)/util/alloc.h \
1098  $(srcdir)/util/rbtree.h $(srcdir)/services/modstack.h $(srcdir)/libunbound/unbound.h \
1099  $(srcdir)/util/data/packed_rrset.h $(srcdir)/util/storage/lruhash.h \
1100  $(srcdir)/util/module.h \
1101  $(srcdir)/util/data/msgreply.h $(srcdir)/util/data/msgparse.h \
1102  $(srcdir)/util/config_file.h \
1103  $(srcdir)/util/net_help.h $(srcdir)/services/localzone.h $(srcdir)/services/cache/rrset.h \
1104  $(srcdir)/util/storage/slabhash.h $(srcdir)/services/cache/infra.h $(srcdir)/util/rtt.h
1105 libunbound.lo libunbound.o: $(srcdir)/libunbound/libunbound.c $(srcdir)/libunbound/unbound.h config.h \
1106  $(srcdir)/libunbound/context.h $(srcdir)/util/locks.h $(srcdir)/util/log.h \
1107  $(srcdir)/util/alloc.h \
1108  $(srcdir)/util/rbtree.h $(srcdir)/services/modstack.h $(srcdir)/util/data/packed_rrset.h \
1109  $(srcdir)/util/storage/lruhash.h \
1110  $(srcdir)/libunbound/libworker.h \
1111  $(srcdir)/util/config_file.h $(srcdir)/util/module.h $(srcdir)/util/data/msgreply.h \
1112  $(srcdir)/util/data/msgparse.h \
1113  $(srcdir)/util/regional.h $(srcdir)/util/random.h $(srcdir)/util/net_help.h $(srcdir)/util/tube.h \
1114  $(srcdir)/services/localzone.h $(srcdir)/services/cache/infra.h $(srcdir)/util/rtt.h \
1115  $(srcdir)/services/cache/rrset.h $(srcdir)/util/storage/slabhash.h
1116 libworker.lo libworker.o: $(srcdir)/libunbound/libworker.c config.h \
1117  $(srcdir)/libunbound/libworker.h $(srcdir)/util/data/packed_rrset.h $(srcdir)/util/storage/lruhash.h \
1118  $(srcdir)/util/locks.h $(srcdir)/util/log.h $(srcdir)/libunbound/context.h $(srcdir)/util/alloc.h $(srcdir)/util/rbtree.h \
1119  $(srcdir)/services/modstack.h $(srcdir)/libunbound/unbound.h $(srcdir)/services/outside_network.h \
1120  $(srcdir)/util/netevent.h $(srcdir)/services/mesh.h $(srcdir)/util/data/msgparse.h $(srcdir)/util/module.h \
1121  $(srcdir)/util/data/msgreply.h $(srcdir)/services/localzone.h $(srcdir)/services/cache/rrset.h \
1122  $(srcdir)/util/storage/slabhash.h $(srcdir)/services/outbound_list.h $(srcdir)/util/regional.h \
1123  $(srcdir)/util/random.h $(srcdir)/util/config_file.h $(srcdir)/util/storage/lookup3.h $(srcdir)/util/net_help.h \
1124  $(srcdir)/util/data/dname.h $(srcdir)/util/data/msgencode.h $(srcdir)/util/tube.h $(srcdir)/iterator/iter_fwd.h \
1125  $(srcdir)/iterator/iter_hints.h $(srcdir)/util/storage/dnstree.h
1126 unbound-host.lo unbound-host.o: $(srcdir)/smallapp/unbound-host.c config.h $(srcdir)/libunbound/unbound.h \
1127  
1128 asynclook.lo asynclook.o: $(srcdir)/testcode/asynclook.c config.h $(srcdir)/libunbound/unbound.h \
1129  $(srcdir)/libunbound/context.h $(srcdir)/util/locks.h $(srcdir)/util/log.h \
1130  $(srcdir)/util/alloc.h \
1131  $(srcdir)/util/rbtree.h $(srcdir)/services/modstack.h $(srcdir)/util/data/packed_rrset.h \
1132  $(srcdir)/util/storage/lruhash.h \
1133  
1134 streamtcp.lo streamtcp.o: $(srcdir)/testcode/streamtcp.c config.h \
1135  $(srcdir)/util/locks.h $(srcdir)/util/log.h \
1136  $(srcdir)/util/net_help.h $(srcdir)/util/data/msgencode.h $(srcdir)/util/data/msgparse.h \
1137  $(srcdir)/util/storage/lruhash.h $(srcdir)/util/data/msgreply.h $(srcdir)/util/data/packed_rrset.h \
1138  $(srcdir)/util/data/dname.h \
1139  
1140 perf.lo perf.o: $(srcdir)/testcode/perf.c config.h \
1141  $(srcdir)/util/log.h $(srcdir)/util/locks.h \
1142  $(srcdir)/util/net_help.h $(srcdir)/util/data/msgencode.h $(srcdir)/util/data/msgreply.h \
1143  $(srcdir)/util/storage/lruhash.h $(srcdir)/util/data/packed_rrset.h $(srcdir)/util/data/msgparse.h
1144 delayer.lo delayer.o: $(srcdir)/testcode/delayer.c config.h $(srcdir)/util/net_help.h $(srcdir)/util/log.h \
1145  $(srcdir)/util/config_file.h
1146 harvest.lo harvest.o: $(srcdir)/testcode/harvest.c config.h \
1147  $(srcdir)/libunbound/unbound.h
1148 unbound-control.lo unbound-control.o: $(srcdir)/smallapp/unbound-control.c config.h \
1149  $(srcdir)/util/log.h \
1150  $(srcdir)/util/config_file.h \
1151  $(srcdir)/util/locks.h $(srcdir)/util/net_help.h
1152 unbound-anchor.lo unbound-anchor.o: $(srcdir)/smallapp/unbound-anchor.c config.h $(srcdir)/libunbound/unbound.h \
1153  
1154 petal.lo petal.o: $(srcdir)/testcode/petal.c config.h \
1155  
1156 pythonmod_utils.lo pythonmod_utils.o: $(srcdir)/pythonmod/pythonmod_utils.c config.h $(srcdir)/util/module.h \
1157  $(srcdir)/util/storage/lruhash.h $(srcdir)/util/locks.h $(srcdir)/util/log.h \
1158  $(srcdir)/util/data/msgreply.h \
1159  $(srcdir)/util/data/packed_rrset.h \
1160  $(srcdir)/util/data/msgparse.h \
1161  $(srcdir)/util/netevent.h \
1162  $(srcdir)/util/net_help.h $(srcdir)/services/cache/dns.h $(srcdir)/services/cache/rrset.h \
1163  $(srcdir)/util/storage/slabhash.h $(srcdir)/util/regional.h \
1164  
1165 win_svc.lo win_svc.o: $(srcdir)/winrc/win_svc.c config.h $(srcdir)/winrc/win_svc.h $(srcdir)/winrc/w_inst.h \
1166  $(srcdir)/daemon/daemon.h $(srcdir)/util/locks.h $(srcdir)/util/log.h \
1167  $(srcdir)/util/alloc.h \
1168  $(srcdir)/services/modstack.h $(srcdir)/daemon/worker.h $(srcdir)/util/netevent.h $(srcdir)/util/data/msgreply.h \
1169  $(srcdir)/util/storage/lruhash.h $(srcdir)/util/data/packed_rrset.h \
1170  $(srcdir)/util/data/msgparse.h \
1171  $(srcdir)/daemon/stats.h \
1172  $(srcdir)/util/timehist.h $(srcdir)/util/module.h $(srcdir)/daemon/remote.h \
1173  $(srcdir)/util/config_file.h $(srcdir)/util/winsock_event.h
1174 w_inst.lo w_inst.o: $(srcdir)/winrc/w_inst.c config.h $(srcdir)/winrc/w_inst.h $(srcdir)/winrc/win_svc.h
1175 unbound-service-install.lo unbound-service-install.o: $(srcdir)/winrc/unbound-service-install.c config.h \
1176  $(srcdir)/winrc/w_inst.h
1177 unbound-service-remove.lo unbound-service-remove.o: $(srcdir)/winrc/unbound-service-remove.c config.h \
1178  $(srcdir)/winrc/w_inst.h
1179 anchor-update.lo anchor-update.o: $(srcdir)/winrc/anchor-update.c config.h \
1180  $(srcdir)/libunbound/unbound.h
1181 ctime_r.lo ctime_r.o: $(srcdir)/compat/ctime_r.c config.h $(srcdir)/util/locks.h $(srcdir)/util/log.h \
1182  
1183 fake-rfc2553.lo fake-rfc2553.o: $(srcdir)/compat/fake-rfc2553.c $(srcdir)/compat/fake-rfc2553.h config.h
1184 gmtime_r.lo gmtime_r.o: $(srcdir)/compat/gmtime_r.c config.h
1185 inet_aton.lo inet_aton.o: $(srcdir)/compat/inet_aton.c config.h
1186 inet_ntop.lo inet_ntop.o: $(srcdir)/compat/inet_ntop.c config.h
1187 inet_pton.lo inet_pton.o: $(srcdir)/compat/inet_pton.c config.h
1188 malloc.lo malloc.o: $(srcdir)/compat/malloc.c config.h
1189 memcmp.lo memcmp.o: $(srcdir)/compat/memcmp.c config.h
1190 memmove.lo memmove.o: $(srcdir)/compat/memmove.c config.h
1191 snprintf.lo snprintf.o: $(srcdir)/compat/snprintf.c config.h
1192 strlcpy.lo strlcpy.o: $(srcdir)/compat/strlcpy.c config.h
1193 strptime.lo strptime.o: $(srcdir)/compat/strptime.c config.h