diff --git a/.gitattributes b/.gitattributes deleted file mode 100644 index a345f5de..00000000 --- a/.gitattributes +++ /dev/null @@ -1,6 +0,0 @@ -# Handle line endings automatically for files detected as -# text and leave all files detected as binary untouched. -* text=auto - -# Always use Unix line endings for our bash scripts -*.sh -lf diff --git a/extras/150kernel/installer/Makefile b/extras/150kernel/installer/Makefile index e3fdebe7..26a75ab9 100644 --- a/extras/150kernel/installer/Makefile +++ b/extras/150kernel/installer/Makefile @@ -24,18 +24,10 @@ EXTRA_TARGETS = EBOOT.PBP PSP_FW_VERSION = 660 -all: $(TARGET).prx - -pspbtcnf_game.h: +all: $(Q)bin2c ../btcnf/pspbtcnf_game.txt pspbtcnf_game.h pspbtcnf_game - -reboot150.h: $(Q)bin2c $(ARKROOT)/extras/150kernel/reboot150/reboot150.prx reboot150.h reboot150 - -systemctrl150.h: $(Q)bin2c $(ARKROOT)/extras/150kernel/systemctrl150/systemctrl150.prx systemctrl150.h systemctrl150 - -tmctrl150.h: $(Q)bin2c $(ARKROOT)/extras/150kernel/tmctrl150/tmctrl150.prx tmctrl150.h tmctrl150 PSPSDK=$(shell psp-config --pspsdk-path) diff --git a/extras/150kernel/installer/Makefile.bak b/extras/150kernel/installer/Makefile.bak new file mode 100644 index 00000000..e3fdebe7 --- /dev/null +++ b/extras/150kernel/installer/Makefile.bak @@ -0,0 +1,42 @@ +TARGET = ark150addoninstaller +OBJS = \ + pspbtcnf_game.h \ + reboot150.h \ + systemctrl150.h \ + tmctrl150.h \ + main.o \ + pspDecrypt.o \ + pspPSAR.o \ + +CFLAGS = -std=c99 -Os -G0 -Wall +INCDIR = $(PSPSDK)/include $(ARKROOT)/common/include + +LIBS = -lpspkubridge -lpsppower + +CXXFLAGS = $(CFLAGS) +ASFLAGS = $(CFLAGS) +LDFLAGS = -L $(ARKROOT)/libs +BUILD_PRX = 1 +PSP_EBOOT_ICON = +PSP_EBOOT_TITLE += ARK 150 Addon Installer + +EXTRA_TARGETS = EBOOT.PBP + +PSP_FW_VERSION = 660 + +all: $(TARGET).prx + +pspbtcnf_game.h: + $(Q)bin2c ../btcnf/pspbtcnf_game.txt pspbtcnf_game.h pspbtcnf_game + +reboot150.h: + $(Q)bin2c $(ARKROOT)/extras/150kernel/reboot150/reboot150.prx reboot150.h reboot150 + +systemctrl150.h: + $(Q)bin2c $(ARKROOT)/extras/150kernel/systemctrl150/systemctrl150.prx systemctrl150.h systemctrl150 + +tmctrl150.h: + $(Q)bin2c $(ARKROOT)/extras/150kernel/tmctrl150/tmctrl150.prx tmctrl150.h tmctrl150 + +PSPSDK=$(shell psp-config --pspsdk-path) +include $(PSPSDK)/lib/build.mak