diff options
author | Internet Software Consortium, Inc <@isc.org> | 2007-09-07 14:16:02 -0600 |
---|---|---|
committer | LaMont Jones <lamont@debian.org> | 2007-09-07 14:16:02 -0600 |
commit | 7cbf4ca408d1a8a75016320a7c086c7b5d5ac417 (patch) | |
tree | 0c1bf9c9fed816aed26da403fa781a9c406587d0 /Makefile.in | |
parent | a6794e2b5c31b3fe4619f4eca08d52f375e7184d (diff) | |
download | bind9-7cbf4ca408d1a8a75016320a7c086c7b5d5ac417.tar.gz |
9.4.0a5
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 15 |
1 files changed, 11 insertions, 4 deletions
diff --git a/Makefile.in b/Makefile.in index 7f3a6888..82152151 100644 --- a/Makefile.in +++ b/Makefile.in @@ -1,4 +1,4 @@ -# Copyright (C) 2004, 2006 Internet Systems Consortium, Inc. ("ISC") +# Copyright (C) 2004, 2005 Internet Systems Consortium, Inc. ("ISC") # Copyright (C) 1998-2002 Internet Software Consortium. # # Permission to use, copy, modify, and 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.41.2.2.2.4 2006/05/19 00:04:00 marka Exp $ +# $Id: Makefile.in,v 1.43.18.2 2005/09/06 03:47:14 marka Exp $ srcdir = @srcdir@ VPATH = @srcdir@ @@ -44,8 +44,7 @@ maintainer-clean:: rm -f configure installdirs: - $(SHELL) ${top_srcdir}/mkinstalldirs ${DESTDIR}${bindir} \ - ${DESTDIR}${localstatedir}/run ${DESTDIR}${sysconfdir} + $(SHELL) ${top_srcdir}/mkinstalldirs ${DESTDIR}${bindir} install:: isc-config.sh installdirs ${INSTALL_SCRIPT} isc-config.sh ${DESTDIR}${bindir} @@ -58,3 +57,11 @@ check: test test: (cd bin/tests && ${MAKE} ${MAKEDEFS} test) + +FAQ: FAQ.xml + ${XSLTPROC} doc/xsl/isc-docbook-text.xsl FAQ.xml | \ + ${W3M} -T text/html -dump >$@.tmp + mv $@.tmp $@ + +clean:: + rm -f FAQ.tmp |