--- coreutils/Makefile.maint 2003-08-17 09:57:29.000000000 +0200 +++ ace/Makefile.maint 2003-08-19 09:56:39.000000000 +0200 @@ -373,8 +373,9 @@ gpg --armor --detach-sign -o $@ $< rel-files = $(xd-delta) $(distdir).tar.bz2 $(distdir).tar.gz $(signatures) +announce_gen ?= ./announce-gen announcement: NEWS ChangeLog $(rel-files) $(signatures) - @./announce-gen \ + @$(announce_gen) \ --release-type=$(RELEASE_TYPE) \ --package=$(PACKAGE) \ --prev=$(PREV_VERSION) \ --- coreutils/GNUmakefile 2003-01-31 11:43:29.000000000 +0100 +++ ace/GNUmakefile 2003-08-19 09:53:00.000000000 +0200 @@ -4,9 +4,31 @@ # It is necessary if you want to build targets usually of interest # only to the maintainer. +# Copyright 2001 Free Software Foundation, Inc. +# +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License along +# with this program; if not, write to the Free Software Foundation, Inc., +# 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. + # Systems where /bin/sh is not the default shell need this. The $(shell) # command below won't work with e.g. stock DOS/Windows shells. +ifeq ($(wildcard /bin/s[h]),/bin/sh) SHELL = /bin/sh +else +# will be used only with the next shell-test line, then overwritten +# by a configured-in value +SHELL = sh +endif have-Makefile := $(shell test -f Makefile && echo yes)