diff options
| author | 2017-06-26 16:06:31 +0100 | |
|---|---|---|
| committer | 2017-06-26 16:06:31 +0100 | |
| commit | 99715d276684539381127b6f5e8e1b88e7f2236a (patch) | |
| tree | 675cf4545843db7f154b6851ad02883884688609 | |
| parent | 8532aad1e8602d417dca069aabeced301edf0c4a (diff) | |
| download | xkbcat-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-- | makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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) |
