diff options
author | Jim Meyering <jim@meyering.net> | 2003-08-26 07:40:04 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2003-08-26 07:40:04 +0000 |
commit | 92aefc30dc68db0c13945c767c8823561aa33f04 (patch) | |
tree | e3e418d41586938b92ce1c15c47442a00b2a611a /GNUmakefile | |
parent | 5c3ef41e0d965237eb76aae67815003b33801bba (diff) | |
download | coreutils-92aefc30dc68db0c13945c767c8823561aa33f04.tar.xz |
(SHELL): Define to `sh', if necessary.
Add copyright.
Diffstat (limited to 'GNUmakefile')
-rw-r--r-- | GNUmakefile | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/GNUmakefile b/GNUmakefile index 4c1d70296..7e67536c4 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -4,9 +4,31 @@ # It is necessary if you want to build targets usually of interest # only to the maintainer. +# Copyright (C) 2001, 2003 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) |