diff options
author | giraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8> | 2007-09-26 18:23:21 +0000 |
---|---|---|
committer | giraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8> | 2007-09-26 18:23:21 +0000 |
commit | 0481e8e464ad2bf770361d8f586b0cc5a0c2d4dc (patch) | |
tree | a4b6b100ebf19939c8c764c2e498bb336b13a53b /Makefile | |
parent | bb90be5f15cee8dcf80962ab482b7f07707332cd (diff) | |
download | netpbm-mirror-0481e8e464ad2bf770361d8f586b0cc5a0c2d4dc.tar.gz netpbm-mirror-0481e8e464ad2bf770361d8f586b0cc5a0c2d4dc.tar.xz netpbm-mirror-0481e8e464ad2bf770361d8f586b0cc5a0c2d4dc.zip |
Make 'you must use GNU make' rule fail
git-svn-id: http://svn.code.sf.net/p/netpbm/code/trunk@413 9d0c8265-081b-0410-96cb-a4ca84ce46f8
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Makefile b/Makefile index 2227eb5c..7f946702 100644 --- a/Makefile +++ b/Makefile @@ -7,8 +7,11 @@ # 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 |