mirror of
https://github.com/isc-projects/bind9.git
synced 2026-02-28 20:41:18 -05:00
"delv +ns" (name server mode) instantiates a full recursive resolver inside delv and uses it to resolve the requested name and type, logging every authoritative response received to iterative queries in the process. this is intended to replace "dig +trace"; it much more accurately duplicates the behavior of named when resolving a query with a cold cache.
22 lines
369 B
Makefile
22 lines
369 B
Makefile
include $(top_srcdir)/Makefile.top
|
|
|
|
AM_CPPFLAGS += \
|
|
-I$(top_builddir)/include \
|
|
$(LIBISC_CFLAGS) \
|
|
$(LIBDNS_CFLAGS) \
|
|
$(LIBNS_CFLAGS) \
|
|
$(LIBISCCFG_CFLAGS)
|
|
|
|
AM_CPPFLAGS += \
|
|
-DSYSCONFDIR=\"${sysconfdir}\"
|
|
|
|
bin_PROGRAMS = delv
|
|
|
|
delv_SOURCES = \
|
|
delv.c
|
|
|
|
delv_LDADD = \
|
|
$(LIBISC_LIBS) \
|
|
$(LIBDNS_LIBS) \
|
|
$(LIBNS_LIBS) \
|
|
$(LIBISCCFG_LIBS)
|