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
This commit is contained in:
Yves Rizoud 2011-11-09 19:57:39 +00:00
parent 6965b6f464
commit 914ec63c90

View File

@ -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