changeset 59:0c757f9bd929 0.1.0

make: set RM to rm -f
author David Demelier <markand@malikania.fr>
date Sun, 15 Sep 2019 20:53:35 +0200
parents 9518e723777f
children 6fb6d2a55042
files Makefile
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/Makefile	Sun Sep 15 20:52:17 2019 +0200
+++ b/Makefile	Sun Sep 15 20:53:35 2019 +0200
@@ -24,7 +24,7 @@
 LDLIBS=                 -lstdc++fs $(EXTRA_LDLIBS)
 INSTALL=                install
 HG=                     hg
-RM=                     rm
+RM=                     rm -f
 
 # Installation options.
 PREFIX=                 /usr/local
@@ -69,6 +69,6 @@
 	$(HG) archive -t zip -X ".hg*" miner-$(VERSION).zip
 
 clean:
-	$(RM) -f $(PROG) $(OBJS) $(DEPS) miner-$(VERSION).tar.gz miner-$(VERSION).zip
+	$(RM) $(PROG) $(OBJS) $(DEPS) miner-$(VERSION).tar.gz miner-$(VERSION).zip
 
 .PHONY: all dist clean install