Blame Makefile

Packit 78deda
# The Netpbm make files exploit features of GNU Make that other Makes
Packit 78deda
# do not have.  Because it is a common mistake for users to try to build
Packit 78deda
# Netpbm with a different Make, we have this make file that does nothing
Packit 78deda
# but tell the user to use GNU Make.
Packit 78deda
Packit 78deda
# If the user were using GNU Make now, this file would not get used because
Packit 78deda
# GNU Make uses a make file named "GNUmakefile" in preference to "Makefile"
Packit 78deda
# if it exists.  Netpbm is shipped with a "GNUmakefile".
Packit 78deda
Packit 78deda
default: all
Packit 78deda
Packit 78deda
all merge install clean dep:
Packit 78deda
	@echo "You must use GNU Make to build Netpbm.  You are running some "
Packit 78deda
	@echo "other Make.  GNU Make may be installed on your system with "
Packit 78deda
	@echo "the name 'gmake'.  If not, see http://www.gnu.org/software ."
Packit 78deda
	@echo
Packit 78deda
	false