diff options
author | LaMont Jones <lamont@debian.org> | 2009-03-20 18:40:55 -0600 |
---|---|---|
committer | LaMont Jones <lamont@debian.org> | 2009-03-20 18:40:55 -0600 |
commit | 84e6ec609bc40abd57388eeb39ccf4727c210498 (patch) | |
tree | d292ee4a33d8c639a7aa4f4e5ce068377e6702a5 /Makefile.in | |
parent | 45b41449108ec791ffc94fc779231e1af17be0d2 (diff) | |
download | bind9-84e6ec609bc40abd57388eeb39ccf4727c210498.tar.gz |
9.6.1b1
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 17 |
1 files changed, 15 insertions, 2 deletions
diff --git a/Makefile.in b/Makefile.in index cfdfb001..662ee0f9 100644 --- a/Makefile.in +++ b/Makefile.in @@ -1,4 +1,4 @@ -# Copyright (C) 2004-2008 Internet Systems Consortium, Inc. ("ISC") +# Copyright (C) 2004-2009 Internet Systems Consortium, Inc. ("ISC") # Copyright (C) 1998-2002 Internet Software Consortium. # # Permission to use, copy, modify, and/or distribute this software for any @@ -13,7 +13,7 @@ # OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR # PERFORMANCE OF THIS SOFTWARE. -# $Id: Makefile.in,v 1.52 2008/09/25 04:02:38 tbox Exp $ +# $Id: Makefile.in,v 1.52.48.2 2009/02/20 23:47:23 tbox Exp $ srcdir = @srcdir@ VPATH = @srcdir@ @@ -24,6 +24,12 @@ top_srcdir = @top_srcdir@ SUBDIRS = make lib bin doc TARGETS = +MANPAGES = isc-config.sh.1 + +HTMLPAGES = isc-config.sh.html + +MANOBJS = ${MANPAGES} ${HTMLPAGES} + @BIND9_MAKE_RULES@ distclean:: @@ -36,12 +42,19 @@ distclean:: maintainer-clean:: rm -f configure +docclean manclean maintainer-clean:: + rm -f ${MANOBJS} + +doc man:: ${MANOBJS} + installdirs: $(SHELL) ${top_srcdir}/mkinstalldirs ${DESTDIR}${bindir} \ ${DESTDIR}${localstatedir}/run ${DESTDIR}${sysconfdir} + $(SHELL) ${top_srcdir}/mkinstalldirs ${DESTDIR}${mandir}/man1 install:: isc-config.sh installdirs ${INSTALL_SCRIPT} isc-config.sh ${DESTDIR}${bindir} + ${INSTALL_DATA} ${srcdir}/isc-config.sh.1 ${DESTDIR}${mandir}/man1 tags: rm -f TAGS |