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