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:
parent
6965b6f464
commit
914ec63c90
@ -448,11 +448,12 @@ all : $(BIN)
|
|||||||
ifeq ($(ATARICROSS),1)
|
ifeq ($(ATARICROSS),1)
|
||||||
$(STACK) -S 128k $(BIN)
|
$(STACK) -S 128k $(BIN)
|
||||||
$(FIX_FLAGS) -S $(BIN)
|
$(FIX_FLAGS) -S $(BIN)
|
||||||
else ifeq ($(PLATFORM),FreeMiNT)
|
else
|
||||||
|
ifeq ($(PLATFORM),FreeMiNT)
|
||||||
$(STACK) -S 128k $(BIN)
|
$(STACK) -S 128k $(BIN)
|
||||||
$(FIX_FLAGS) -S $(BIN)
|
$(FIX_FLAGS) -S $(BIN)
|
||||||
endif
|
endif
|
||||||
|
endif
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
|
||||||
@ -460,10 +461,12 @@ debug : $(BIN)
|
|||||||
ifeq ($(ATARICROSS),1)
|
ifeq ($(ATARICROSS),1)
|
||||||
$(STACK) -S 128k $(BIN)
|
$(STACK) -S 128k $(BIN)
|
||||||
$(FIX_FLAGS) -S $(BIN)
|
$(FIX_FLAGS) -S $(BIN)
|
||||||
else ifeq ($(PLATFORM),FreeMiNT)
|
else
|
||||||
|
ifeq ($(PLATFORM),FreeMiNT)
|
||||||
$(STACK) -S 128k $(BIN)
|
$(STACK) -S 128k $(BIN)
|
||||||
$(FIX_FLAGS) -S $(BIN)
|
$(FIX_FLAGS) -S $(BIN)
|
||||||
endif
|
endif
|
||||||
|
endif
|
||||||
|
|
||||||
|
|
||||||
# Make release will strip the executable to make it smaller but non-debugable
|
# Make release will strip the executable to make it smaller but non-debugable
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user