chiark / gitweb /
@@ -1,4 +1,4 @@
[adns] / Makefile.in
CommitLineData
8a9f0205 1# Makefile - top-level Makefile
e9d74277 2#
a79ac5ba 3# This file is
51e8cb11 4# Copyright (C) 1997-2000 Ian Jackson <ian@davenant.greenend.org.uk>
a79ac5ba 5#
6# It is part of adns, which is
e1bae008 7# Copyright (C) 1997-2005 Ian Jackson <ian@davenant.greenend.org.uk>
8# Copyright (C) 1999-2004 Tony Finch <dot@dotat.at>
a79ac5ba 9#
e9d74277 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
8a5e5147 24# Remember to change ADNS_VERSION_STRING in client/client.h too, and
25# possibly library soname (MAJOR and MINOR in settings.make.in).
4eac0d28 26DISTVERSION= 1.1
8a5e5147 27
72cdc702 28srcdir= @srcdir@
29VPATH= @srcdir@
e9d74277 30
acfd75c4 31ENABLE_DYNAMIC= @ENABLE_DYNAMIC@
32ifeq ($(ENABLE_DYNAMIC),elf)
33SUBDIRS_DYNAMIC=dynamic
34else
35SUBDIRS_DYNAMIC=
36endif
37
38SUBDIRS= src $(SUBDIRS_DYNAMIC) client regress
e9d74277 39
72cdc702 40all install uninstall clean distclean mostlyclean maintainer-clean distprep:
41 set -e; for d in $(SUBDIRS); do $(MAKE) -C $$d $@; done
e1f1ed57 42 $(MAKE) $@-here
43
4f3f9880 44all-here install-here uninstall-here distprep-here: README
e1f1ed57 45
46clean-here mostlyclean-here:
96337b87 47 rm -f *~ ./#*# core *.orig *.rej adns-*.tar.gz
bb0038ab 48 rm -rf dist_tmp
e1f1ed57 49
50distclean-here maintainer-clean-here: clean-here
51 rm -f settings.make config.h config.cache config.log config.status
e9d74277 52
72cdc702 53install-strip:
54 $(MAKE) INSTALL_PROGRAM_FLAGS=-s
e9d74277 55
e1f1ed57 56dist_tmp=dist_tmp/adns-$(DISTVERSION)
af71f022 57dist: distprep
e1f1ed57 58 rm -rf dist_tmp*
59 mkdir dist_tmp $(dist_tmp)
60 find \( -name CVS -o -name dist_tmp* \) -prune -o -type d -print | \
61 sed -e 's#.*#mkdir -p $(dist_tmp)/&#' | sh
62 find \( -name CVS -o -name dist_tmp* \) -prune -o -type f -print | \
63 sed -e 's#.*#ln & $(dist_tmp)/&#' | sh
af71f022 64 $(MAKE) -C dist_tmp/adns-$(DISTVERSION) distclean
e1f1ed57 65 cd dist_tmp && tar cf ../$(dist_tmp).tar `basename $(dist_tmp)`
66 gzip -9 $(dist_tmp).tar
67 mv $(dist_tmp).tar.gz .
e9d74277 68
72cdc702 69check: all
70 $(MAKE) -C regress check
6e88acfa 71
c6826df6 72README: README.html
73 lynx -dump -number_links -cfg=/dev/null ./README.html >README.tmp
4f3f9880 74 mv -f README.tmp README
75
72cdc702 76TAGS info dvi:
77 # do nothing
1104c85d 78
79.PHONY: install #people with case-insensitive filesystems lose otherwise!