From 3c8fd588f6b9d348685c0fc64c5e3b3914846277 Mon Sep 17 00:00:00 2001
From: Oliver Schmidt
Date: Wed, 1 Jun 2016 19:41:51 +0200
Subject: [PATCH] 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 !
---
samples/Makefile | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
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
--
2.39.5