Move psp sdk include to after including Makefile.common so it properly appends includes instead of being overwritten

This commit is contained in:
Thomas Daley 2016-01-25 17:04:09 -06:00
parent f4f4201f42
commit 79e732f010

View File

@ -153,7 +153,6 @@ else ifeq ($(platform), psp1)
-fomit-frame-pointer -fgcse-sm -fgcse-las -fgcse-after-reload \
-fweb -fpeel-loops
DEFS += -DPSP -D_PSP_FW_VERSION=371
INCFLAGS += -I$(shell psp-config --pspsdk-path)/include
STATIC_LINKING := 1
# Vita
@ -212,6 +211,10 @@ LIBRETRO_DIR := .
include Makefile.common
ifeq ($(platform), psp1)
INCFLAGS += -I$(shell psp-config --pspsdk-path)/include
endif
OBJECTS := $(SOURCES_C:.c=.o)
LDFLAGS += $(fpic) $(SHARED)