Skip to content

Commit

Permalink
Fixed makefile to create manifest properly
Browse files Browse the repository at this point in the history
  • Loading branch information
EPICGameGuy committed Nov 30, 2023
1 parent c23f8a2 commit fd1fc16
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/Makefile.iso
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit fd1fc16

Please sign in to comment.