Created PSX Game template to use
This commit is contained in:
18
template/JabyEngine-PSX_Game/application/Makefile
Normal file
18
template/JabyEngine-PSX_Game/application/Makefile
Normal 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
|
3
template/JabyEngine-PSX_Game/application/src/main.cpp
Normal file
3
template/JabyEngine-PSX_Game/application/src/main.cpp
Normal file
@@ -0,0 +1,3 @@
|
||||
int main() {
|
||||
return 0;
|
||||
}
|
Reference in New Issue
Block a user