diff --git a/Makefile b/Makefile index 86efb54b27..3fd1775593 100644 --- a/Makefile +++ b/Makefile @@ -288,7 +288,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 @@ -325,9 +325,9 @@ endif $(N64_EMULATOR) $< -.PHONY: all rom compressed clean setup disasm run distclean assetclean +.PHONY: all rom compress clean setup disasm run distclean assetclean .DEFAULT_GOAL := rom -all: rom compressed +all: rom compress #### Various Recipes #### diff --git a/README.md b/README.md index 2dd814db6b..30adba5afa 100644 --- a/README.md +++ b/README.md @@ -121,7 +121,7 @@ Keep in mind that for each new terminal session, you will need to **activate** t Now you can install the Python dependencies, to do so run: ```bash -python3 -m pip install -U -r requirements.txt +pip install -U -r requirements.txt ``` #### 4. Prepare a base ROM diff --git a/tools/mkdmadata.c b/tools/mkdmadata.c index acdfb5ec30..c83864b559 100644 --- a/tools/mkdmadata.c +++ b/tools/mkdmadata.c @@ -54,7 +54,7 @@ static void usage(const char *execname) fprintf(stderr, "zelda64 dmadata generation tool v0.01\n" "usage: %s SPEC_FILE DMADATA_TABLE COMPRESS_RANGES\n" "SPEC_FILE file describing the organization of object files into segments\n" - "DMADATA_TABLE filename of output dmadata table header\n", + "DMADATA_TABLE filename of output dmadata table header\n" "COMPRESS_RANGES filename to write which files are compressed (e.g. 0-5,7,10-20)\n", execname); }