chiark / gitweb /
bugfixes
[adns] / Makefile.in
CommitLineData
2fc34454 1# Makefile - top-level Makefile
1c957fda 2#
d942707d 3# This file is
4# Copyright (C) 1997-1999 Ian Jackson <ian@davenant.greenend.org.uk>
5#
6# It is part of adns, which is
7# Copyright (C) 1997-1999 Ian Jackson <ian@davenant.greenend.org.uk>
8# Copyright (C) 1999 Tony Finch <dot@dotat.at>
9#
1c957fda 10# This program is free software; you can redistribute it and/or modify
11# it under the terms of the GNU General Public License as published by
12# the Free Software Foundation; either version 2, or (at your option)
13# any later version.
14#
15# This program is distributed in the hope that it will be useful,
16# but WITHOUT ANY WARRANTY; without even the implied warranty of
17# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18# GNU General Public License for more details.
19#
20# You should have received a copy of the GNU General Public License
21# along with this program; if not, write to the Free Software Foundation,
22# Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
23
5ab2163b 24DISTVERSION= 0.4
9579019a 25srcdir= @srcdir@
26VPATH= @srcdir@
1c957fda 27
9579019a 28SUBDIRS= src dynamic client regress
1c957fda 29
9579019a 30all install uninstall clean distclean mostlyclean maintainer-clean distprep:
31 set -e; for d in $(SUBDIRS); do $(MAKE) -C $$d $@; done
a8ab18db 32 $(MAKE) $@-here
33
df1d1f3a 34all-here install-here uninstall-here distprep-here: README
a8ab18db 35
36clean-here mostlyclean-here:
dd34699e 37 rm -f *~ ./#*# core *.orig *.rej adns-*.tar.gz
ac41b8f0 38 rm -rf dist_tmp
a8ab18db 39
40distclean-here maintainer-clean-here: clean-here
41 rm -f settings.make config.h config.cache config.log config.status
1c957fda 42
9579019a 43install-strip:
44 $(MAKE) INSTALL_PROGRAM_FLAGS=-s
1c957fda 45
a8ab18db 46dist_tmp=dist_tmp/adns-$(DISTVERSION)
5ab2163b 47dist: distprep
a8ab18db 48 rm -rf dist_tmp*
49 mkdir dist_tmp $(dist_tmp)
50 find \( -name CVS -o -name dist_tmp* \) -prune -o -type d -print | \
51 sed -e 's#.*#mkdir -p $(dist_tmp)/&#' | sh
52 find \( -name CVS -o -name dist_tmp* \) -prune -o -type f -print | \
53 sed -e 's#.*#ln & $(dist_tmp)/&#' | sh
5ab2163b 54 $(MAKE) -C dist_tmp/adns-$(DISTVERSION) distclean
a8ab18db 55 cd dist_tmp && tar cf ../$(dist_tmp).tar `basename $(dist_tmp)`
56 gzip -9 $(dist_tmp).tar
57 mv $(dist_tmp).tar.gz .
1c957fda 58
9579019a 59check: all
60 $(MAKE) -C regress check
cc0a8cd2 61
df1d1f3a 62README README-update:
63 lynx -dump -number_links -cfg=/dev/null \
64 http://www.chiark.greenend.org.uk/~ian/adns/ >README.tmp
65 mv -f README.tmp README
66
9579019a 67TAGS info dvi:
68 # do nothing