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

Add clean assets (#785)

* makefile change

* also delete

* Add cleantools

* rename cleanassets and assetclean

* add rules to PHONY in makefile

* Remove toolsclean
This commit is contained in:
louist103 2021-05-17 13:50:19 -04:00 committed by GitHub
parent 4d5d1fd079
commit a597d71e54
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -181,8 +181,11 @@ build/undefined_syms.txt: undefined_syms.txt
clean:
$(RM) -r $(ROM) $(ELF) build
distclean: clean
assetclean:
$(RM) -r $(ASSET_BIN_DIRS)
$(RM) -r build/assets
distclean: clean assetclean
$(RM) -r baserom/
$(MAKE) -C tools distclean
@ -196,7 +199,7 @@ resources: $(ASSET_FILES_OUT)
test: $(ROM)
$(EMULATOR) $(EMU_FLAGS) $<
.PHONY: all clean setup test distclean
.PHONY: all clean setup test distclean assetclean
#### Various Recipes ####