From 914ec63c907555c21fb436ab95e59f656cf7c675 Mon Sep 17 00:00:00 2001 From: Yves Rizoud Date: Wed, 9 Nov 2011 19:57:39 +0000 Subject: [PATCH] Compilation fix for GNU make v3.79 : "else ifeq" is only supported on v3.81+ git-svn-id: svn://pulkomandy.tk/GrafX2/trunk@1862 416bcca6-2ee7-4201-b75f-2eb2f807beb1 --- src/Makefile | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/src/Makefile b/src/Makefile index 448e5cab..90932614 100644 --- a/src/Makefile +++ b/src/Makefile @@ -448,11 +448,12 @@ all : $(BIN) ifeq ($(ATARICROSS),1) $(STACK) -S 128k $(BIN) $(FIX_FLAGS) -S $(BIN) -else ifeq ($(PLATFORM),FreeMiNT) +else +ifeq ($(PLATFORM),FreeMiNT) $(STACK) -S 128k $(BIN) $(FIX_FLAGS) -S $(BIN) endif - +endif endif @@ -460,10 +461,12 @@ debug : $(BIN) ifeq ($(ATARICROSS),1) $(STACK) -S 128k $(BIN) $(FIX_FLAGS) -S $(BIN) -else ifeq ($(PLATFORM),FreeMiNT) +else +ifeq ($(PLATFORM),FreeMiNT) $(STACK) -S 128k $(BIN) $(FIX_FLAGS) -S $(BIN) endif +endif # Make release will strip the executable to make it smaller but non-debugable