From: michaelh Date: Sun, 30 Sep 2001 00:07:51 +0000 (+0000) Subject: Created X-Git-Url: https://git.gag.com/?a=commitdiff_plain;h=b15590945ccfa79c40d0f0a13a5a254169cdc73d;p=fw%2Fsdcc Created git-svn-id: https://sdcc.svn.sourceforge.net/svnroot/sdcc/trunk/sdcc@1325 4a8a32a2-be11-0410-ad9d-d568d2c75423 --- 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