From aec59df3a0e96015d135602488d95e25f94dba0c Mon Sep 17 00:00:00 2001 From: ache Date: Mon, 17 Jul 2017 02:46:51 +0200 Subject: Makefile force rm --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'Makefile') 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) -- cgit v1.2.3