2014-06-04 23:17:37 +00:00
|
|
|
BUILD_PRX = 1
|
2014-06-06 03:14:02 +00:00
|
|
|
HAVE_FILE_LOGGER = 0
|
2014-06-04 23:17:37 +00:00
|
|
|
DEBUG = 0
|
|
|
|
|
|
|
|
TARGET = retroarchpsp_salamander
|
|
|
|
|
|
|
|
ifeq ($(DEBUG), 1)
|
|
|
|
OPTIMIZE_LV := -O0 -g
|
|
|
|
else
|
|
|
|
OPTIMIZE_LV := -O2 -g
|
|
|
|
endif
|
|
|
|
|
2015-02-18 23:04:03 +00:00
|
|
|
INCDIR = $(PSPPATH)/include libretro-common/include
|
2014-06-04 23:17:37 +00:00
|
|
|
CFLAGS = $(OPTIMIZE_LV) -G0 -std=gnu99 -ffast-math
|
|
|
|
ASFLAGS = $(CFLAGS)
|
|
|
|
|
2015-01-12 05:51:57 +00:00
|
|
|
RARCH_DEFINES = -DPSP -DIS_SALAMANDER -DRARCH_CONSOLE
|
2014-06-04 23:17:37 +00:00
|
|
|
|
|
|
|
LIBDIR =
|
|
|
|
LDFLAGS =
|
2015-04-18 13:28:06 +00:00
|
|
|
LIBS = -lstdc++ -lm -lpsppower
|
2014-06-04 23:17:37 +00:00
|
|
|
|
|
|
|
ifeq ($(HAVE_FILE_LOGGER), 1)
|
|
|
|
CFLAGS += -DHAVE_FILE_LOGGER
|
|
|
|
endif
|
|
|
|
|
|
|
|
CFLAGS += $(RARCH_DEFINES)
|
|
|
|
|
|
|
|
EXTRA_TARGETS = EBOOT.PBP
|
2014-06-06 02:05:15 +00:00
|
|
|
PSP_EBOOT_TITLE = RetroArch
|
|
|
|
PSP_EBOOT_ICON = psp1/ICON0.PNG
|
|
|
|
PSP_EBOOT_PIC1 = psp1/PIC1.PNG
|
2014-06-04 23:17:37 +00:00
|
|
|
|
2015-06-14 23:56:01 +00:00
|
|
|
OBJS = frontend/frontend_salamander.o \
|
|
|
|
frontend/frontend_driver.o \
|
|
|
|
frontend/drivers/platform_psp.o \
|
|
|
|
frontend/drivers/platform_null.o \
|
|
|
|
libretro-common/file/file_path.o \
|
|
|
|
libretro-common/string/string_list.o \
|
|
|
|
libretro-common/file/dir_list.o \
|
|
|
|
libretro-common/compat/compat.o \
|
|
|
|
libretro-common/file/config_file.o \
|
|
|
|
libretro-common/hash/rhash.o \
|
|
|
|
psp1/kernel_functions.o
|
2014-06-04 23:17:37 +00:00
|
|
|
|
|
|
|
PSPSDK=$(shell psp-config --pspsdk-path)
|
|
|
|
include $(PSPSDK)/lib/build.mak
|