Created
authormichaelh <michaelh@4a8a32a2-be11-0410-ad9d-d568d2c75423>
Sun, 30 Sep 2001 00:07:51 +0000 (00:07 +0000)
committermichaelh <michaelh@4a8a32a2-be11-0410-ad9d-d568d2c75423>
Sun, 30 Sep 2001 00:07:51 +0000 (00:07 +0000)
git-svn-id: https://sdcc.svn.sourceforge.net/svnroot/sdcc/trunk/sdcc@1325 4a8a32a2-be11-0410-ad9d-d568d2c75423

support/makebin/clean.mk [new file with mode: 0644]

diff --git a/support/makebin/clean.mk b/support/makebin/clean.mk
new file mode 100644 (file)
index 0000000..db12b13
--- /dev/null
@@ -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