- dns64 implementation has been moved from query.c to the dns64 module. - the code in lib/dns/dns64.c has not yet been moved. - the module does not yet parse dns64 options in named.conf; that's still done by named. - the module does not have persistent storage; we still use the client object. - made more functions globally accessible so they can be called from modules: ns_query_lookup(), ns_query_addsoa(), ns_query_nodata(), ns_query_ncache(), ns_query_setorder().
91 lines
2.5 KiB
Makefile
91 lines
2.5 KiB
Makefile
# Copyright (C) Internet Systems Consortium, Inc. ("ISC")
|
|
#
|
|
# This Source Code Form is subject to the terms of the Mozilla Public
|
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
#
|
|
# See the COPYRIGHT file distributed with this work for additional
|
|
# information regarding copyright ownership.
|
|
|
|
srcdir = @srcdir@
|
|
VPATH = @srcdir@
|
|
top_srcdir = @top_srcdir@
|
|
|
|
@BIND9_MAKE_INCLUDES@
|
|
|
|
CINCLUDES = -I${srcdir}/include -I${srcdir}/unix/include -I. \
|
|
${NS_INCLUDES} ${DNS_INCLUDES} \
|
|
${ISCCFG_INCLUDES} ${ISC_INCLUDES}
|
|
|
|
DNSLIBS = ../../lib/dns/libdns.@A@ ${MAXMINDDB_LIBS} @DNS_CRYPTO_LIBS@
|
|
ISCCFGLIBS = ../../lib/isccfg/libisccfg.@A@
|
|
ISCLIBS = ../../lib/isc/libisc.@A@ ${OPENSSL_LIBS} ${JSON_C_LIBS} ${LIBXML2_LIBS}
|
|
NSLIBS = ../../lib/ns/libns.@A@
|
|
|
|
LIBS =
|
|
|
|
SO_TARGETS = lib/dns64.@SO@ lib/filter-aaaa.@SO@
|
|
SO_INSTALL = dns64.@SO@ filter-aaaa.@SO@
|
|
TARGETS = @SO_TARGETS@
|
|
|
|
SO_OBJS = dns64.@O@ filter-aaaa.@O@
|
|
SO_SRCS = dns64.c filter-aaaa.c
|
|
|
|
CFLAGS = @CFLAGS@ @SO_CFLAGS@
|
|
SO_LDFLAGS = @LDFLAGS@ @SO_LDFLAGS@
|
|
|
|
MANPAGES = dns64.8 filter-aaaa.8
|
|
|
|
HTMLPAGES = dns64.html filter-aaaa.html
|
|
|
|
MANOBJS = ${MANPAGES} ${HTMLPAGES}
|
|
|
|
@BIND9_MAKE_RULES@
|
|
|
|
lib/dns64.@SO@: dns64.@SO@
|
|
$(SHELL) ${top_srcdir}/mkinstalldirs `pwd`/lib
|
|
${LIBTOOL_MODE_INSTALL} ${INSTALL} dns64.@SO@ `pwd`/lib
|
|
|
|
dns64.@SO@: dns64.@O@
|
|
${LIBTOOL_MODE_LINK} @SO_LD@ ${SO_LDFLAGS} -o $@ \
|
|
dns64.@O@ ${LIBS}
|
|
|
|
lib/filter-aaaa.@SO@: filter-aaaa.@SO@
|
|
$(SHELL) ${top_srcdir}/mkinstalldirs `pwd`/lib
|
|
${LIBTOOL_MODE_INSTALL} ${INSTALL} filter-aaaa.@SO@ `pwd`/lib
|
|
|
|
filter-aaaa.@SO@: filter-aaaa.@O@
|
|
${LIBTOOL_MODE_LINK} @SO_LD@ ${SO_LDFLAGS} -o $@ \
|
|
filter-aaaa.@O@ ${LIBS}
|
|
|
|
doc man:: ${MANOBJS}
|
|
|
|
docclean manclean maintainer-clean::
|
|
rm -f ${MANOBJS}
|
|
|
|
clean distclean::
|
|
rm -f dns64.@SO@ filter-aaaa.@SO@
|
|
rm -f ${TARGETS} ${OBJS}
|
|
|
|
installdirs:
|
|
$(SHELL) ${top_srcdir}/mkinstalldirs ${DESTDIR}${plugindir}
|
|
$(SHELL) ${top_srcdir}/mkinstalldirs ${DESTDIR}${mandir}/man8
|
|
|
|
install:: @SO_TARGETS@ installdirs
|
|
for i in ${SO_INSTALL} ; \
|
|
do \
|
|
if test -f $$i ; \
|
|
then \
|
|
${LIBTOOL_MODE_INSTALL} ${INSTALL_LIBRARY} $$i \
|
|
${DESTDIR}${plugindir}; \
|
|
fi \
|
|
done
|
|
${INSTALL_DATA} ${srcdir}/filter-aaaa.8 ${DESTDIR}${mandir}/man8
|
|
${INSTALL_DATA} ${srcdir}/dns64.8 ${DESTDIR}${mandir}/man8
|
|
|
|
uninstall::
|
|
${LIBTOOL_MODE_UNINSTALL} rm -f ${DESTDIR}${plugindir}/dns64.@SO@
|
|
${LIBTOOL_MODE_UNINSTALL} rm -f ${DESTDIR}${plugindir}/filter-aaaa.@SO@
|
|
rm -f ${DESTDIR}${mandir}/man8/dns64.8
|
|
rm -f ${DESTDIR}${mandir}/man8/filter-aaaa.8
|