move this inside else block

This commit is contained in:
twinaphex
2017-07-02 18:50:39 +02:00
parent 31b4de2776
commit 42abb86404

View File

@@ -367,14 +367,14 @@ ifeq ($(platform), psp1)
INCFLAGS += -I$(shell psp-config --pspsdk-path)/include INCFLAGS += -I$(shell psp-config --pspsdk-path)/include
endif endif
OBJOUT = -o
LINKOUT = -o
ifneq (,$(findstring msvc,$(platform))) ifneq (,$(findstring msvc,$(platform)))
OBJOUT = -Fo OBJOUT = -Fo
LINKOUT = -out: LINKOUT = -out:
LD = link.exe LD = link.exe
else else
OBJOUT = -o
LINKOUT = -o
LD = $(CC) LD = $(CC)
endif endif