1# Makefile - top-level Makefile 2# 3# This file is 4# Copyright (C) 1997-2000 Ian Jackson <ian@davenant.greenend.org.uk> 5# 6# It is part of adns, which is 7# Copyright (C) 1997-2000 Ian Jackson <ian@davenant.greenend.org.uk> 8# Copyright (C) 1999-2000 Tony Finch <dot@dotat.at> 9# 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 24# Remember to change ADNS_VERSION_STRING in client/client.h too, and 25# possibly library soname (MAJOR and MINOR in settings.make.in). 26DISTVERSION= 1.0 27 28srcdir= @srcdir@ 29VPATH= @srcdir@ 30 31ENABLE_DYNAMIC= @ENABLE_DYNAMIC@ 32ifeq ($(ENABLE_DYNAMIC),elf) 33SUBDIRS_DYNAMIC=dynamic 34else 35SUBDIRS_DYNAMIC= 36endif 37 38SUBDIRS= src $(SUBDIRS_DYNAMIC) client regress 39 40all install uninstall clean distclean mostlyclean maintainer-clean distprep: 41 set -e; for d in $(SUBDIRS); do $(MAKE) -C $$d $@; done 42 $(MAKE) $@-here 43 44all-here install-here uninstall-here distprep-here: README 45 46clean-here mostlyclean-here: 47 rm -f *~ ./#*# core *.orig *.rej adns-*.tar.gz 48 rm -rf dist_tmp 49 50distclean-here maintainer-clean-here: clean-here 51 rm -f settings.make config.h config.cache config.log config.status 52 53install-strip: 54 $(MAKE) INSTALL_PROGRAM_FLAGS=-s 55 56dist_tmp=dist_tmp/adns-$(DISTVERSION) 57dist: distprep 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 64 $(MAKE) -C dist_tmp/adns-$(DISTVERSION) distclean 65 cd dist_tmp && tar cf ../$(dist_tmp).tar `basename $(dist_tmp)` 66 gzip -9 $(dist_tmp).tar 67 mv $(dist_tmp).tar.gz . 68 69check: all 70 $(MAKE) -C regress check 71 72README: README.html 73 lynx -dump -number_links -cfg=/dev/null ./README.html >README.tmp 74 mv -f README.tmp README 75 76TAGS info dvi: 77 # do nothing 78