about summary refs log tree commit diff
path: root/Makefile
blob: 7f94670239d47661ea65b0d8d93ba7ac1403c03a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# The Netpbm make files exploit features of GNU Make that other Makes
# do not have.  Because it is a common mistake for users to try to build
# Netpbm with a different Make, we have this make file that does nothing
# but tell the user to use GNU Make.

# If the user were using GNU Make now, this file would not get used because
# GNU Make uses a make file named "GNUmakefile" in preference to "Makefile"
# if it exists.  Netpbm is shipped with a "GNUmakefile".

default: all

all merge install clean dep:
	@echo "You must use GNU Make to build Netpbm.  You are running some "
	@echo "other Make.  GNU Make may be installed on your system with "
	@echo "the name 'gmake'.  If not, see http://www.gnu.org/software ."
	@echo
	false