mirror of
https://github.com/isc-projects/bind9.git
synced 2026-02-25 10:59:35 -05:00
The libirs contained own re-implementations of the getaddrinfo, getnameinfo and gai_strerror + irs_context and irs_dnsconf API that was unused anywhere in the BIND 9. Keep just the irs_resonf API that is being extensively used to parse /etc/resolv.conf by several of BIND 9 tools.
28 lines
655 B
Makefile
28 lines
655 B
Makefile
include $(top_srcdir)/Makefile.top
|
|
|
|
AM_CPPFLAGS += \
|
|
$(LIBISC_CFLAGS) \
|
|
$(LIBDNS_CFLAGS) \
|
|
$(LIBIRS_CFLAGS)
|
|
|
|
noinst_PROGRAMS = \
|
|
resolve \
|
|
sample-async \
|
|
sample-update \
|
|
sample-request \
|
|
nsprobe
|
|
|
|
resolve_SOURCES = resolve.c
|
|
resolve_LDADD = $(LIBISC_LIBS) $(LIBIRS_LIBS) $(LIBDNS_LIBS)
|
|
|
|
sample_async_SOURCES = sample-async.c
|
|
sample_async_LDADD = $(LIBISC_LIBS) $(LIBDNS_LIBS)
|
|
|
|
sample_update_SOURCES = sample-update.c
|
|
sample_update_LDADD = $(LIBISC_LIBS) $(LIBDNS_LIBS)
|
|
|
|
sample_request_SOURCES = sample-request.c
|
|
sample_request_LDADD = $(LIBISC_LIBS) $(LIBDNS_LIBS)
|
|
|
|
nsprobe_SOURCES = nsprobe.c
|
|
nsprobe_LDADD = $(LIBISC_LIBS) $(LIBDNS_LIBS)
|