mirror of
https://github.com/zeldaret/oot.git
synced 2024-11-10 19:20:13 +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:
parent
4d5d1fd079
commit
a597d71e54
1 changed files with 5 additions and 2 deletions
7
Makefile
7
Makefile
|
@ -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 ####
|
||||
|
||||
|
|
Loading…
Reference in a new issue