From c217f624705de52814c3737e4402e8137afaae33 Mon Sep 17 00:00:00 2001 From: dolphin6k Date: Fri, 5 Nov 2021 20:09:16 +0900 Subject: [PATCH] Added clean target --- Makefile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index b48003035..dc0382c27 100644 --- a/Makefile +++ b/Makefile @@ -677,6 +677,8 @@ clean: @if [ -d templates/.thumbs ]; then rmdir templates/.thumbs; fi @-if [ "x$(BUNDLE)" != "x" ]; then rm -rf $(BUNDLE); fi @-rm -f TuxPaint.dmg temp.dmg; rm -rf magic/*.dSYM Resources + @-rm -f dlllist a.exe + @-rm -f win32/Preprocessed.iss win32/tuxpaint-*.zip win32/tuxpaint-*.exe @echo # "make uninstall" should remove the various parts from their @@ -1147,7 +1149,7 @@ obj/parse.c: obj/parse_step1.c @echo @echo "...Generating the command-line and config file parser (STEP 2)..." @sed -e 's/^const struct/static const struct/' -e 's/_GNU/_TUX/' obj/parse_step1.c > obj/parse.c - + obj/parse_step1.c: src/parse.gperf @echo @echo "...Generating the command-line and config file parser (STEP 1)..."