mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-16 14:50:17 +00:00
- Enable HE SCUMM games
- Create 1.00 (default) and 1.50/kxploit EBOOT.PBP - Add eboot graphics by Chris Eskildsen, used with his permission. svn-id: r18806
This commit is contained in:
parent
7a4ea49687
commit
43ec42e9e1
@ -4,7 +4,6 @@
|
||||
#control build
|
||||
DISABLE_SCALERS = true
|
||||
DISABLE_HQ_SCALERS = true
|
||||
DISABLE_HE = true
|
||||
DISABLE_KYRA = true
|
||||
|
||||
srcdir = ../..
|
||||
@ -23,6 +22,8 @@ RANLIB = psp-ranlib
|
||||
STRIP = psp-strip
|
||||
MKDIR = mkdir -p
|
||||
RM = rm -f
|
||||
MKSFO = mksfo
|
||||
PACK_PBP = pack-pbp
|
||||
|
||||
INCDIR = ../../
|
||||
|
||||
@ -58,7 +59,7 @@ LIBS += -lz -lm `$(PSPBIN)/sdl-config --libs` -lc -lpspgu -lpspctrl -lpspkernel
|
||||
CXXFLAGS := $(CFLAGS) $(CXXFLAGS) -fno-exceptions -fno-rtti
|
||||
ASFLAGS := $(CFLAGS) $(ASFLAGS)
|
||||
|
||||
TARGET = scummvm-psp.elf
|
||||
TARGET = scummvm-psp
|
||||
OBJS := psp_main.o \
|
||||
psp_fs.o \
|
||||
osys_psp.o \
|
||||
@ -73,9 +74,35 @@ MODULE_DIRS += .
|
||||
|
||||
include $(srcdir)/Makefile.common
|
||||
|
||||
all: $(TARGET)
|
||||
$(STRIP) $(TARGET)
|
||||
PSP_EBOOT_SFO = param.sfo
|
||||
PSP_EBOOT_TITLE = ScummVM-PSP
|
||||
PSP_EBOOT = EBOOT.PBP
|
||||
PSP_EBOOT_ICON = icon0.png
|
||||
PSP_EBOOT_ICON1 = NULL
|
||||
PSP_EBOOT_PIC0 = pic0.png
|
||||
PSP_EBOOT_PIC1 = pic1.png
|
||||
PSP_EBOOT_SND0 = NULL
|
||||
PSP_EBOOT_PSAR = NULL
|
||||
|
||||
$(TARGET): $(OBJS)
|
||||
all: $(PSP_EBOOT)
|
||||
|
||||
$(TARGET).elf: $(OBJS)
|
||||
$(LINK.cpp) $(OBJS) $(LIBS) -o $@
|
||||
$(STRIP) $@
|
||||
|
||||
$(PSP_EBOOT_SFO):
|
||||
$(MKSFO) '$(PSP_EBOOT_TITLE)' $@
|
||||
|
||||
$(PSP_EBOOT): $(TARGET).elf $(PSP_EBOOT_SFO)
|
||||
$(PACK_PBP) $@ $(PSP_EBOOT_SFO) $(PSP_EBOOT_ICON) $(PSP_EBOOT_ICON1) \
|
||||
$(PSP_EBOOT_PIC0) $(PSP_EBOOT_PIC1) $(PSP_EBOOT_SND0) \
|
||||
$(TARGET).elf $(PSP_EBOOT_PSAR)
|
||||
|
||||
kxploit: $(TARGET).elf $(PSP_EBOOT_SFO)
|
||||
mkdir -p "$(TARGET)"
|
||||
$(STRIP) $(TARGET).elf -o $(TARGET)/$(PSP_EBOOT)
|
||||
mkdir -p "$(TARGET)%"
|
||||
$(PACK_PBP) "$(TARGET)%/$(PSP_EBOOT)" $(PSP_EBOOT_SFO) $(PSP_EBOOT_ICON) \
|
||||
$(PSP_EBOOT_ICON1) $(PSP_EBOOT_PIC0) $(PSP_EBOOT_PIC1) \
|
||||
$(PSP_EBOOT_SND0) NULL $(PSP_EBOOT_PSAR)
|
||||
|
||||
|
BIN
backends/psp/icon0.png
Normal file
BIN
backends/psp/icon0.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 13 KiB |
BIN
backends/psp/pic0.png
Normal file
BIN
backends/psp/pic0.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 3.9 KiB |
BIN
backends/psp/pic1.png
Normal file
BIN
backends/psp/pic1.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 156 KiB |
Loading…
Reference in New Issue
Block a user