summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorGravatar Antti Korpi2017-06-26 16:06:31 +0100
committerGravatar Antti Korpi2017-06-26 16:06:31 +0100
commit99715d276684539381127b6f5e8e1b88e7f2236a (patch)
tree675cf4545843db7f154b6851ad02883884688609
parent8532aad1e8602d417dca069aabeced301edf0c4a (diff)
downloadxkbcat-99715d276684539381127b6f5e8e1b88e7f2236a.tar.gz
xkbcat-99715d276684539381127b6f5e8e1b88e7f2236a.zip
Use rm --force at cleanup
Avoids errors when nothing is there to be cleaned up: that's a successful cleanup too.
-rw-r--r--makefile2
1 files changed, 1 insertions, 1 deletions
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)