From fd1fc16a040c04f048f8494e84fbb737b412d63e Mon Sep 17 00:00:00 2001 From: EPICGameGuy Date: Thu, 30 Nov 2023 18:54:03 -0500 Subject: [PATCH] Fixed makefile to create manifest properly --- src/Makefile.iso | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/Makefile.iso b/src/Makefile.iso index a1e2892..99b871b 100644 --- a/src/Makefile.iso +++ b/src/Makefile.iso @@ -60,14 +60,14 @@ models: $(OBJ_MODEL_FILES) $(FBX_MODEL_FILES) MANIFEST_CC = egg-ps2-manifest-generator FORCE: ; -$(ISO_FOLDER_DIR)/manifest.iso: FORCE +$(ISO_FOLDER_DIR)/MANIFEST.ISO: FORCE $(MANIFEST_CC) -i$(ISO_FOLDER_DIR)/assets -p assets/ -o$@ -$(ISO_FOLDER_DIR)/manifest.hst: FORCE - $(MANIFEST_CC) -i$(ISO_FOLDER_DIR)/assets -p assets/ -o$@ +$(ISO_FOLDER_DIR)/MANIFEST.HST: FORCE + $(MANIFEST_CC) -i$(ISO_FOLDER_DIR)/assets -p assets/ -o$@ --convert_path=false .PHONY: manifests -manifests: $(ISO_FOLDER_DIR)/manifest.iso $(ISO_FOLDER_DIR)/manifest.hst +manifests: $(ISO_FOLDER_DIR)/MANIFEST.ISO $(ISO_FOLDER_DIR)/MANIFEST.HST .PHONY: isoassets isoassets: $(ISO_FOLDER_DIR)/SYSTEM.CNF copy_libs $(SOUND_ISO_FILES) models manifests