Created PSX Game template to use

This commit is contained in:
2022-08-21 21:00:00 +02:00
parent f7f43f50c6
commit 9ab4520b81
18 changed files with 108 additions and 563 deletions

View File

@@ -0,0 +1,18 @@
ARTIFACT = #{ProjectName}
BUILD_DIR = bin
PSCX_REDUX_DIR = $(JABY_ENGINE_DIR)/lib/pcsx-redux
include $(JABY_ENGINE_DIR)/lib/Wildcard.mk
SRCS = $(call rwildcard, src, c cpp)
LIBS = -L$(JABY_ENGINE_DIR)/lib/PSX-$(BUILD_PROFILE) -lJabyEngine
include $(JABY_ENGINE_DIR)/lib/Makefile
#Rules section for default compilation and linking
all: $(TARGET).psexe
clean:
rm -fr $(OUTPUT_DIR)
rm -fr ../iso/*.bin
rm -fr ../iso/*.cue

View File

@@ -0,0 +1,3 @@
int main() {
return 0;
}