diff options
author | Jim Meyering <jim@meyering.net> | 1999-01-27 21:29:38 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 1999-01-27 21:29:38 +0000 |
commit | 9acb5c85febed10014f6a78ce9867631f6a8c5c8 (patch) | |
tree | 341b0a6cbaf321edc33f3da61c908c10722b9e66 /GNUmakefile | |
parent | a8284194a9040775b36ab6fe1fe0d308ef9d1a3e (diff) | |
download | idutils-9acb5c85febed10014f6a78ce9867631f6a8c5c8.tar.gz idutils-9acb5c85febed10014f6a78ce9867631f6a8c5c8.tar.bz2 idutils-9acb5c85febed10014f6a78ce9867631f6a8c5c8.zip |
.
Diffstat (limited to 'GNUmakefile')
-rw-r--r-- | GNUmakefile | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/GNUmakefile b/GNUmakefile new file mode 100644 index 0000000..0f4e21c --- /dev/null +++ b/GNUmakefile @@ -0,0 +1,27 @@ +# Having a separate GNUmakefile lets me `include' the dynamically +# generated rules created via Makefile.maint as well as Makefile.maint itself. +# This makefile is used only if you run GNU Make. +# It is necessary if you want to build targets usually of interest +# only to the maintainer. + +# 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. +SHELL = /bin/sh + +have-Makefile := $(shell test -f Makefile && echo yes) + +# If the user runs GNU make but has not yet run ./configure, +# give them a diagnostic. +ifeq ($(have-Makefile),yes) + +include Makefile +include $(srcdir)/Makefile.maint + +else + +all: + @echo There seems to be no Makefile in this directory. + @echo "You must run ./configure before running \`make'." + @exit 1 + +endif |