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 | |
---|
18 | srcdir = @srcdir@ |
---|
19 | VPATH = @srcdir@ |
---|
20 | top_srcdir = @top_srcdir@ |
---|
21 | |
---|
22 | @BIND9_VERSION@ |
---|
23 | |
---|
24 | SUBDIRS = make lib bin doc @LIBBIND@ |
---|
25 | TARGETS = |
---|
26 | |
---|
27 | @BIND9_MAKE_RULES@ |
---|
28 | |
---|
29 | distclean:: |
---|
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. |
---|
36 | maintainer-clean:: |
---|
37 | rm -f configure |
---|
38 | |
---|
39 | installdirs: |
---|
40 | $(SHELL) ${top_srcdir}/mkinstalldirs ${DESTDIR}${bindir} |
---|
41 | |
---|
42 | install:: isc-config.sh installdirs |
---|
43 | ${INSTALL_SCRIPT} isc-config.sh ${DESTDIR}${bindir} |
---|
44 | |
---|
45 | tags: |
---|
46 | rm -f TAGS |
---|
47 | find lib bin -name "*.[ch]" -print | @ETAGS@ - |
---|
48 | |
---|
49 | check: test |
---|
50 | |
---|
51 | test: |
---|
52 | (cd bin/tests && ${MAKE} ${MAKEDEFS} test) |
---|