make disasm (#34)

* make disasm

* update

* phony
This commit is contained in:
Alejandro Asenjo Nitti
2023-11-28 15:26:18 -03:00
committed by GitHub
parent be46258c0c
commit 57aa26f0b8
+8 -1
View File
@@ -285,6 +285,13 @@ context:
@echo "Generating ctx.c ..."
@$(PYTHON) ./tools/m2ctx.py $(filter-out $@, $(MAKECMDGOALS))
disasm:
@$(RM) -r asm/$(VERSION) bin/$(VERSION)
@echo "Unifying yamls..."
@$(CAT) yamls/$(VERSION)/header.yaml yamls/$(VERSION)/makerom.yaml yamls/$(VERSION)/main.yaml yamls/$(VERSION)/overlays.yaml > $(SPLAT_YAML)
@echo "Extracting..."
@$(SPLAT) $(SPLAT_YAML) --disassemble-all
#### Various Recipes ####
# Final ROM
@@ -338,4 +345,4 @@ build/src/libultra/libc/ll.o: src/libultra/libc/ll.c
# Print target for debugging
print-% : ; $(info $* is a $(flavor $*) variable set to [$($*)]) @true
.PHONY: all uncompressed compressed clean init extract expected format checkformat decompress context
.PHONY: all uncompressed compressed clean init extract expected format checkformat decompress context disasm