]> CyberLeo.Net >> Repos - FreeBSD/stable/9.git/blob - contrib/bind9/Makefile.in
MFV r306384:
[FreeBSD/stable/9.git] / contrib / bind9 / Makefile.in
1 # Copyright (C) 2004-2009, 2011-2015  Internet Systems Consortium, Inc. ("ISC")
2 # Copyright (C) 1998-2002  Internet Software Consortium.
3 #
4 # Permission to use, copy, modify, and/or distribute this software for any
5 # purpose with or without fee is hereby granted, provided that the above
6 # copyright notice and this permission notice appear in all copies.
7 #
8 # THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH
9 # REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
10 # AND FITNESS.  IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT,
11 # INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
12 # LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE
13 # OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
14 # PERFORMANCE OF THIS SOFTWARE.
15
16 # $Id: Makefile.in,v 1.62 2011/09/06 04:06:37 marka Exp $
17
18 srcdir =        @srcdir@
19 VPATH =         @srcdir@
20 top_srcdir =    @top_srcdir@
21
22 VERSION=@BIND9_VERSION@
23
24 SUBDIRS =       make unit lib bin doc @LIBEXPORT@
25 TARGETS =
26
27 MANPAGES =      isc-config.sh.1
28
29 HTMLPAGES =     isc-config.sh.html
30
31 MANOBJS =       ${MANPAGES} ${HTMLPAGES}
32
33 @BIND9_MAKE_RULES@
34
35 newrr:
36         cd lib/dns; ${MAKE} newrr
37
38 distclean::
39         rm -f config.cache config.h config.log config.status TAGS
40         rm -f libtool isc-config.sh configure.lineno
41         rm -f util/conf.sh docutil/docbook2man-wrapper.sh
42
43 # XXX we should clean libtool stuff too.  Only do this after we add rules
44 # to make it.
45 maintainer-clean::
46         rm -f configure
47
48 docclean manclean maintainer-clean::
49         rm -f ${MANOBJS}
50
51 doc man:: ${MANOBJS}
52
53 installdirs:
54         $(SHELL) ${top_srcdir}/mkinstalldirs ${DESTDIR}${bindir} \
55         ${DESTDIR}${localstatedir}/run ${DESTDIR}${sysconfdir}
56         $(SHELL) ${top_srcdir}/mkinstalldirs ${DESTDIR}${mandir}/man1
57
58 install:: isc-config.sh installdirs
59         ${INSTALL_SCRIPT} isc-config.sh ${DESTDIR}${bindir}
60         rm -f ${DESTDIR}${bindir}/bind9-config
61         @LN@ ${DESTDIR}${bindir}/isc-config.sh ${DESTDIR}${bindir}/bind9-config
62         ${INSTALL_DATA} ${top_srcdir}/isc-config.sh.1 ${DESTDIR}${mandir}/man1
63         rm -f ${DESTDIR}${mandir}/man1/bind9-config.1
64         @LN@ ${DESTDIR}${mandir}/man1/isc-config.sh.1 ${DESTDIR}${mandir}/man1/bind9-config.1
65         ${INSTALL_DATA} ${top_srcdir}/bind.keys ${DESTDIR}${sysconfdir}
66
67 tags:
68         rm -f TAGS
69         find lib bin -name "*.[ch]" -print | @ETAGS@ -
70
71 test check:
72         @if test -n "`${PERL} ${top_srcdir}/bin/tests/system/testsock.pl 2>&- || echo fail`"; then \
73         echo I: NOTE: The tests were not run because they require that; \
74         echo I: the IP addresses 10.53.0.1 through 10.53.0.8 are configured; \
75         echo I: as alias addresses on the loopback interface.  Please run; \
76         echo I: \'bin/tests/system/ifconfig.sh up\' as root to configure; \
77         echo I: them, then rerun the tests. Run make force-test to run the; \
78         echo I: tests anyway.; \
79         exit 1; \
80         fi
81         ${MAKE} test-force
82
83 force-test: test-force
84
85 test-force:
86         status=0; \
87         (cd bin/tests && ${MAKE} ${MAKEDEFS} test) || status=1; \
88         (test -f unit/unittest.sh && $(SHELL) unit/unittest.sh) || status=1; \
89         exit $$status
90
91 FAQ: FAQ.xml
92         ${XSLTPROC} doc/xsl/isc-docbook-text.xsl FAQ.xml | \
93         LC_ALL=C ${W3M} -T text/html -dump -cols 72 >$@.tmp
94         mv $@.tmp $@
95
96 unit::
97         sh ${top_srcdir}/unit/unittest.sh
98
99 clean::
100         rm -f FAQ.tmp