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
endif
OBJOUT = -o
LINKOUT = -o
ifneq (,$(findstring msvc,$(platform)))
OBJOUT = -Fo
LINKOUT = -out:
LD = link.exe
else
OBJOUT = -o
LINKOUT = -o
LD = $(CC)
endif