aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorache <ache@ache.one>2017-07-17 02:46:51 +0200
committerache <ache@ache.one>2017-07-17 02:46:51 +0200
commitaec59df3a0e96015d135602488d95e25f94dba0c (patch)
treeda3f74f9de31ce07d1afc013a570a9e386fbbb23
parentCan edit track and year tags (diff)
Makefile force rm
-rw-r--r--Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index a4a9ea4..ec49db4 100644
--- a/Makefile
+++ b/Makefile
@@ -25,10 +25,10 @@ $(PROG): main.c main.h $(OBJ_FILES)
.PHONY: clean mrproper
clean:
- rm $(OBJ_FILES)
+ rm -f $(OBJ_FILES)
mrproper: clean
- rm ./$(PROG)
+ rm -f ./$(PROG)
install: todo
@@ -36,5 +36,5 @@ install: todo
echo 'Installation success'
uninstall: /usr/bin/$(PROG)
- rm /usr/bin/$(PROG)
+ rm -f /usr/bin/$(PROG)