source: trunk/third/bind/Makefile.in @ 16985

Revision 16985, 1.5 KB checked in by ghudson, 23 years ago (diff)
This commit was generated by cvs2svn to compensate for changes in r16984, which included commits to RCS files with non-trunk default branches.
Line 
1# Copyright (C) 1998-2001  Internet Software Consortium.
2#
3# Permission to use, copy, modify, and distribute this software for any
4# purpose with or without fee is hereby granted, provided that the above
5# copyright notice and this permission notice appear in all copies.
6#
7# THE SOFTWARE IS PROVIDED "AS IS" AND INTERNET SOFTWARE CONSORTIUM
8# DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL
9# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL
10# INTERNET SOFTWARE CONSORTIUM BE LIABLE FOR ANY SPECIAL, DIRECT,
11# INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING
12# FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT,
13# NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION
14# WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
15
16# $Id: Makefile.in,v 1.1.1.2 2002-02-03 04:23:12 ghudson Exp $
17
18srcdir =        @srcdir@
19VPATH =         @srcdir@
20top_srcdir =    @top_srcdir@
21
22@BIND9_VERSION@
23
24SUBDIRS =       make lib bin doc @LIBBIND@
25TARGETS =
26
27@BIND9_MAKE_RULES@
28
29distclean::
30        rm -f config.cache config.h config.log config.status TAGS
31        rm -f libtool isc-config.sh
32        rm -f util/conf.sh
33
34# XXX we should clean libtool stuff too.  Only do this after we add rules
35# to make it.
36maintainer-clean::
37        rm -f configure
38
39installdirs:
40        $(SHELL) ${top_srcdir}/mkinstalldirs ${DESTDIR}${bindir}
41
42install:: isc-config.sh installdirs
43        ${INSTALL_SCRIPT} isc-config.sh ${DESTDIR}${bindir}
44
45tags:
46        rm -f TAGS
47        find lib bin -name "*.[ch]" -print | @ETAGS@ -
48
49check: test
50
51test:
52        (cd bin/tests && ${MAKE} ${MAKEDEFS} test)
Note: See TracBrowser for help on using the repository browser.