The eboot is packed with DATA.PSP and a PARAM.SFO
My question is can I have a custom makefile that will make the DATA.PSP not packed into the EBOOT and instead have it renamed as the EBOOT.PBP. This way I wouldn't have to use the PBP Unpacker to extract the DATA.PSP and rename that to EBOOT.PBP.
Heres the makefile I'm using:
Code: Select all
TARGET = GameName
OBJS = main.o
INCDIR =
CFLAGS = -O2 -G0 -Wall
CXXFLAGS = $(CFLAGS) -fno-exceptions -fno-rtti
ASFLAGS = $(CFLAGS)
LIBDIR =
LIBS=-lm
LDFLAGS =
EXTRA_TARGETS = EBOOT.PBP
PSP_EBOOT_TITLE = GameName
PSPSDK=$(shell psp-config --pspsdk-path)
include $(PSPSDK)/lib/build.mak