From 4fd4208364fcaf71ef0ff35d0c49ce3d9149e98b Mon Sep 17 00:00:00 2001 From: Seth Barberee Date: Tue, 21 Dec 2021 14:47:46 -0600 Subject: Delete build artifacts on clean target (#89) * delete build artifacts on clean target * clean out the graphics files too * fix up auto-gen message on pokemon_found and move END_OF_TABLE to actual end of table --- Makefile | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 5ea70d1..a155373 100755 --- a/Makefile +++ b/Makefile @@ -173,6 +173,12 @@ clean-tools: tidy: $(RM) -f $(ROM) $(ELF) $(MAP) $(RM) -r $(BUILD_DIR) + $(RM) -f $(ITEM_DATA) + $(RM) -f $(MOVE_DATA) + $(RM) -f $(POKEMON_SPECIES) + $(RM) -f $(DUNGEON_FLOOR) + $(RM) -f $(DUNGEON_POKEMON) + find . \( -iname '*.1bpp' -o -iname '*.4bpp' -o -iname '*.8bpp' -o -iname '*.gbapal' -o -iname '*.lz' -o -iname '*.latfont' -o -iname '*.hwjpnfont' -o -iname '*.fwjpnfont' \) -exec rm {} + @$(MAKE) clean -C libagbsyscall define scaninc -- cgit v1.2.3