1
0
mirror of https://github.com/zeldaret/oot.git synced 2024-09-21 04:24:43 +00:00

Rename make compressed to make compress (#1620)

This commit is contained in:
cadmic 2024-01-24 15:02:53 -08:00 committed by GitHub
parent 0417e739cc
commit 16f9ff39be
No account linked to committer's email address

View File

@ -268,7 +268,7 @@ ifneq ($(COMPARE),0)
@md5sum -c baseroms/$(VERSION)/checksum.md5
endif
compressed: $(ROMC)
compress: $(ROMC)
ifneq ($(COMPARE),0)
@md5sum $(ROMC)
@md5sum -c baseroms/$(VERSION)/checksum-compressed.md5
@ -300,9 +300,9 @@ endif
$(N64_EMULATOR) $<
.PHONY: all rom compressed clean setup run distclean assetclean
.PHONY: all rom compress clean setup run distclean assetclean
.DEFAULT_GOAL := rom
all: rom compressed
all: rom compress
#### Various Recipes ####