"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.
23 lines
369 B
Makefile
23 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)
|