From 122e839ea804ef56e950c67f627c912a3e01b3ee Mon Sep 17 00:00:00 2001 From: Bill Rossi Date: Sat, 8 Mar 2025 13:35:58 -0500 Subject: [PATCH] Split clean steps --- Makefile | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 8534bd1..cddfcb6 100644 --- a/Makefile +++ b/Makefile @@ -16,7 +16,7 @@ ITCH_CHANNEL_LINUX=linux-x64 ITCH_CHANNEL_WINDOWS=windows-x64 ITCH_CHANNEL_MAC=mac -.PHONY: clean run butler_upload build_levels build_images +.PHONY: clean clean_game clean_assets run butler_upload build_levels build_images run: $(GAME)_linux build_levels build_images SKIP_INTRO=1 ./$(GAME)_linux @@ -53,17 +53,21 @@ $(GAME)_windows.exe: *.c $(GAME)_mac: *.c $(CC) *.c $(CFLAGS) -o $(GAME)_mac -clean: +clean_game: rm -f ./$(GAME)_linux rm -f ./$(GAME)_linux.zip rm -f ./$(GAME)_windows.exe rm -f ./$(GAME)_windows.zip rm -f ./$(GAME)_mac rm -f ./$(GAME)_mac.zip + +clean_assets: rm -f ./levels/*.csv rm -f ./img/*.png rm -f ./tilesets/*.png +clean: clean_game clean_assets + $(GAME)_linux.zip: $(GAME)_linux rm -f ./$(GAME)_linux.zip zip -r $(GAME)_linux.zip $(GAME)_linux COPYING img/*.png img/LICENSE