From 31a5f1e4bac261c4ae2a9f3ab9607ad14391cb98 Mon Sep 17 00:00:00 2001 From: Rozelette Date: Mon, 28 Sep 2020 17:41:58 -0500 Subject: [PATCH] Use MAKE in Makefile --- Makefile | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Makefile b/Makefile index f86eb761ba..c88d86d43d 100644 --- a/Makefile +++ b/Makefile @@ -106,8 +106,8 @@ CC := ./tools/preprocess.py $(CC) -- $(AS) $(ASFLAGS) -- .INTERMEDIATE: disasm all: - make $(UNCOMPRESSED_ROM) - make $(ROM) + $(MAKE) $(UNCOMPRESSED_ROM) + $(MAKE) $(ROM) $(ROM): $(ROM_FILES) ./tools/makerom.py ./tables/dmadata_table.txt $@ -c @@ -161,7 +161,7 @@ clean: setup: git submodule update --init --recursive python3 -m pip install -r requirements.txt - make -C tools + $(MAKE) -C tools ./tools/extract_rom.py $(MM_BASEROM) diff-init: all @@ -172,9 +172,9 @@ diff-init: all cp $(ROM) expected/$(ROM) init: - make setup - make all - make diff-init + $(MAKE) setup + $(MAKE) all + $(MAKE) diff-init # Recipes