From 99715d276684539381127b6f5e8e1b88e7f2236a Mon Sep 17 00:00:00 2001 From: Antti Korpi Date: Mon, 26 Jun 2017 16:06:31 +0100 Subject: Use rm --force at cleanup Avoids errors when nothing is there to be cleaned up: that's a successful cleanup too. --- makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'makefile') diff --git a/makefile b/makefile index a5ff6b5..9fde0aa 100644 --- a/makefile +++ b/makefile @@ -1,4 +1,4 @@ xkbcat: xkbcat.c clang -O3 --std=c99 -pedantic -Wall -lX11 -lXi -o xkbcat xkbcat.c clean: - rm xkbcat + rm --force $(BINARY_NAME) -- cgit v1.3-2-g0d8e