Icons are changed
[gnuplot] / src / GNUmakefile
1 # Systems where /bin/sh is not the default shell need this.  The $(shell)
2 # command below won't work with e.g. stock DOS/Windows shells.
3 SHELL = /bin/sh
4
5 have-Makefile := $(shell test -f Makefile && echo yes)
6
7 # If the user runs GNU make but has not yet run ./configure,
8 # give them a diagnostic.
9 ifeq ($(have-Makefile),yes)
10
11 include Makefile
12 include $(srcdir)/Makefile.maint
13
14 else
15
16 all:
17         @echo There seems to be no Makefile in this directory.
18         @echo "You must run ./configure before running \`make'."
19         @exit 1
20
21 endif
22