From: Oliver Schmidt
Date: Wed, 1 Jun 2016 17:41:51 +0000 (+0200)
Subject: Don't fiddle with foreign files.
X-Git-Tag: V2.16~131
X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=3c8fd588f6b9d348685c0fc64c5e3b3914846277;p=cc65
Don't fiddle with foreign files.
No cc65 tool creates *~ files so we don't cleanup *~ files. If some other tool (like an editor) creates *~ files it's up to the user - and only him - to decide when those files are to be deleted !
---
diff --git a/samples/Makefile b/samples/Makefile
index 2542275fb..4560b35d0 100644
--- a/samples/Makefile
+++ b/samples/Makefile
@@ -171,7 +171,7 @@ mostlyclean:
.PHONY: clean
clean:
- $(RM) *~ *.map *.o *.s *.lbl
+ $(RM) *.map *.o *.s *.lbl
.PHONY: zap
zap: clean