2005-09-05 23:51:37 -04:00
|
|
|
# Copyright (C) 2004, 2005 Internet Systems Consortium, Inc. ("ISC")
|
2004-03-05 00:14:21 -05:00
|
|
|
# Copyright (C) 1998-2002 Internet Software Consortium.
|
2000-07-31 21:33:37 -04:00
|
|
|
#
|
1999-03-05 23:12:06 -05:00
|
|
|
# Permission to use, copy, modify, and 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.
|
2000-07-31 21:33:37 -04:00
|
|
|
#
|
2004-03-05 00:14:21 -05:00
|
|
|
# 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.
|
|
|
|
|
|
2005-09-05 23:51:37 -04:00
|
|
|
# $Id: Makefile.in,v 1.45 2005/09/06 03:51:34 marka Exp $
|
2000-06-22 18:00:42 -04:00
|
|
|
|
1998-12-11 21:00:01 -05:00
|
|
|
srcdir = @srcdir@
|
|
|
|
|
VPATH = @srcdir@
|
|
|
|
|
top_srcdir = @top_srcdir@
|
|
|
|
|
|
1998-12-11 20:35:38 -05:00
|
|
|
@BIND9_VERSION@
|
1998-12-11 15:10:26 -05:00
|
|
|
|
2001-07-03 23:37:43 -04:00
|
|
|
SUBDIRS = make lib bin doc @LIBBIND@
|
1998-12-11 15:10:26 -05:00
|
|
|
TARGETS =
|
|
|
|
|
|
|
|
|
|
@BIND9_MAKE_RULES@
|
|
|
|
|
|
2002-12-12 21:01:52 -05:00
|
|
|
distclean::
|
|
|
|
|
@if [ "X@LIBBIND@" = "X" ] ; then \
|
|
|
|
|
i=lib/bind; \
|
|
|
|
|
echo "making $@ in `pwd`/$$i"; \
|
|
|
|
|
(cd $$i; ${MAKE} ${MAKEDEFS} $@) || exit 1; \
|
|
|
|
|
fi
|
|
|
|
|
|
1999-07-14 21:40:23 -04:00
|
|
|
distclean::
|
2000-06-23 17:22:20 -04:00
|
|
|
rm -f config.cache config.h config.log config.status TAGS
|
2002-12-12 21:01:52 -05:00
|
|
|
rm -f libtool isc-config.sh configure.lineno
|
|
|
|
|
rm -f util/conf.sh docutil/docbook2man-wrapper.sh
|
1998-12-11 15:10:26 -05:00
|
|
|
|
2001-03-27 14:36:55 -05:00
|
|
|
# XXX we should clean libtool stuff too. Only do this after we add rules
|
|
|
|
|
# to make it.
|
|
|
|
|
maintainer-clean::
|
|
|
|
|
rm -f configure
|
|
|
|
|
|
2000-09-20 14:05:33 -04:00
|
|
|
installdirs:
|
2000-09-20 15:06:16 -04:00
|
|
|
$(SHELL) ${top_srcdir}/mkinstalldirs ${DESTDIR}${bindir}
|
2000-09-20 14:05:33 -04:00
|
|
|
|
|
|
|
|
install:: isc-config.sh installdirs
|
2001-07-12 21:38:51 -04:00
|
|
|
${INSTALL_SCRIPT} isc-config.sh ${DESTDIR}${bindir}
|
2000-06-23 17:19:05 -04:00
|
|
|
|
1999-07-14 21:40:23 -04:00
|
|
|
tags:
|
|
|
|
|
rm -f TAGS
|
2000-03-16 18:04:37 -05:00
|
|
|
find lib bin -name "*.[ch]" -print | @ETAGS@ -
|
2000-09-20 13:51:08 -04:00
|
|
|
|
|
|
|
|
check: test
|
|
|
|
|
|
|
|
|
|
test:
|
|
|
|
|
(cd bin/tests && ${MAKE} ${MAKEDEFS} test)
|
2005-08-17 18:55:57 -04:00
|
|
|
|
|
|
|
|
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
|