From b15590945ccfa79c40d0f0a13a5a254169cdc73d Mon Sep 17 00:00:00 2001 From: michaelh Date: Sun, 30 Sep 2001 00:07:51 +0000 Subject: [PATCH] Created git-svn-id: https://sdcc.svn.sourceforge.net/svnroot/sdcc/trunk/sdcc@1325 4a8a32a2-be11-0410-ad9d-d568d2c75423 --- support/makebin/clean.mk | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 support/makebin/clean.mk diff --git a/support/makebin/clean.mk b/support/makebin/clean.mk new file mode 100644 index 00000000..db12b136 --- /dev/null +++ b/support/makebin/clean.mk @@ -0,0 +1,22 @@ +# Deleting all files created by building the program +# -------------------------------------------------- +clean: + rm -rf obj + rm -f *core *[%~] *.[oa] makebin + rm -f *.[a-z]*~ + +# Deleting all files created by configuring or building the program +# ----------------------------------------------------------------- +distclean: clean + rm -f *.dep + + +# Like clean but some files may still exist +# ----------------------------------------- +mostlyclean: clean + + +# Deleting everything that can reconstructed by this Makefile. It deletes +# everything deleted by distclean plus files created by bison, etc. +# ----------------------------------------------------------------------- +realclean: distclean -- 2.30.2