PS3: Initial version of the PlayStation 3 backend

This commit is contained in:
Bastien Bouclet 2011-06-02 10:34:41 +02:00
parent 872d672c33
commit 11cfa0d357
18 changed files with 351 additions and 7 deletions

View file

@ -211,6 +211,27 @@ ifdef DIST_FILES_ENGINEDATA
endif
cp $(DIST_FILES_DOCS) $(AOS4PATH)
# Mark special targets as phony
.PHONY: deb bundle osxsnap win32dist install uninstall
#
# PlayStation 3 specific
#
ps3pkg: $(EXECUTABLE)
$(STRIP) $(EXECUTABLE)
sprxlinker $(EXECUTABLE)
mkdir -p ps3pkg/USRDIR/data/
mkdir -p ps3pkg/USRDIR/doc/
mkdir -p ps3pkg/USRDIR/saves/
make_self_npdrm "$(EXECUTABLE)" ps3pkg/USRDIR/EBOOT.BIN UP0001-SCUM12000_00-0000000000000000
cp $(DIST_FILES_THEMES) ps3pkg/USRDIR/data/
ifdef DIST_FILES_ENGINEDATA
cp $(DIST_FILES_ENGINEDATA) ps3pkg/USRDIR/data/
endif
cp $(DIST_FILES_DOCS) ps3pkg/USRDIR/doc/
cp dists/ps3/ICON0.PNG ps3pkg/
cp dists/ps3/PIC1.PNG ps3pkg/
sfo.py -f dists/ps3/sfo.xml ps3pkg/PARAM.SFO
pkg.py --contentid UP0001-SCUM12000_00-0000000000000000 ps3pkg/ scummvm-ps3.pkg
# Mark special targets as phony
.PHONY: deb bundle osxsnap win32dist install uninstall ps3pkg