This commit is contained in:
Becker A 2023-09-30 22:33:36 -06:00 committed by GitHub
commit 14c2cb134c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 2 deletions

View File

@ -480,11 +480,12 @@ endif
clean:
$(RM) -r $(BUILD_DIR_BASE)
$(MAKE) -C $(TOOLS_DIR) clean
$(MAKE) -C $(TOOLS_DIR)/sm64tools clean
distclean: clean
$(PYTHON) extract_assets.py --clean
$(MAKE) -C $(TOOLS_DIR) clean
$(MAKE) -C $(TOOLS_DIR)/sm64tools clean
$(MAKE) -C $(TOOLS_DIR) distclean
test: $(ROM)
$(EMULATOR) $(EMU_FLAGS) $<

View File

@ -56,6 +56,9 @@ clean:
$(MAKE) -C audiofile clean
$(MAKE) -C ido-static-recomp clean
distclean: clean
$(MAKE) -C ido-static-recomp distclean
define COMPILE
$(1): $($1_SOURCES)
$$(CC) $(CFLAGS) $($1_CFLAGS) $$^ -o $$@ $($1_LDFLAGS) $(LDFLAGS)