diff options
Diffstat (limited to 'usr.sbin/bind/Makefile.in')
-rw-r--r-- | usr.sbin/bind/Makefile.in | 53 |
1 files changed, 0 insertions, 53 deletions
diff --git a/usr.sbin/bind/Makefile.in b/usr.sbin/bind/Makefile.in deleted file mode 100644 index d8053a8ec8a..00000000000 --- a/usr.sbin/bind/Makefile.in +++ /dev/null @@ -1,53 +0,0 @@ -# Copyright (C) 2004-2009, 2011-2016 Internet Systems Consortium, Inc. ("ISC") -# Copyright (C) 1998-2002 Internet Software Consortium. -# -# Permission to use, copy, modify, and/or distribute this software for any -# purpose with or without fee is hereby granted, provided that the above -# copyright notice and this permission notice appear in all copies. -# -# THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH -# REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY -# AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT, -# INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM -# LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE -# OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -# PERFORMANCE OF THIS SOFTWARE. - -# $Id: Makefile.in,v 1.13 2020/01/21 00:14:43 deraadt Exp $ - -srcdir = @srcdir@ -VPATH = @srcdir@ -top_srcdir = @top_srcdir@ - -VERSION=@BIND9_VERSION@ - -SUBDIRS = make lib bin -TARGETS = - -@BIND9_MAKE_RULES@ - -newrr: - cd lib/dns; ${MAKE} newrr - -bind.keys.h: ${top_srcdir}/bind.keys ${srcdir}/util/bindkeys.pl - ${PERL} ${srcdir}/util/bindkeys.pl < ${top_srcdir}/bind.keys > $@ - -distclean:: - rm -f config.cache config.h config.log config.status TAGS - rm -f libtool isc-config.sh configure.lineno - -# XXX we should clean libtool stuff too. Only do this after we add rules -# to make it. -maintainer-clean:: - rm -f configure - rm -f bind.keys.h - -installdirs: - $(SHELL) ${top_srcdir}/mkinstalldirs ${DESTDIR}${bindir} \ - ${DESTDIR}${localstatedir}/run ${DESTDIR}${sysconfdir} - -install:: installdirs - -tags: - rm -f TAGS - find lib bin -name "*.[ch]" -print | @ETAGS@ - |