From 988509a40f943f941ec7a0d7c87b87d655ded51f Mon Sep 17 00:00:00 2001 From: Steve Brokenshire Date: Sun, 21 Jan 2018 21:19:51 +0000 Subject: [PATCH] Makefile: Enhanced clean option and added distclean option --- source/.gitignore | 1 + source/Makefile.in | 10 +++++++++- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/source/.gitignore b/source/.gitignore index 475f253..6c60d10 100644 --- a/source/.gitignore +++ b/source/.gitignore @@ -18,3 +18,4 @@ autom4te.cache/* config.log config.status Makefile +tests/Makefile diff --git a/source/Makefile.in b/source/Makefile.in index a154fc6..9b22cf2 100644 --- a/source/Makefile.in +++ b/source/Makefile.in @@ -71,7 +71,15 @@ bitmaphelper: bitmaphelperobjs clean: find . -name "*.o" -type f -delete find . -name "*.a" -type f -delete - $(RM) -f ./xestiacal + $(RM) -f xestiacal + $(RM) -f tools/bitmapcode.helper + $(RM) -f bitmapsdone + +distclean: clean + find bitmaps -name "*.cpp" -type f -delete + find bitmaps -name "*.h" -type f -delete + $(RM) -f Makefile + $(RM) -f tests/Makefile mainobjs: $(MAINOBJS) -- 2.39.2