summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorAidan <torrinfail@gmail.com>2019-11-26 22:42:27 -0700
committerAidan <torrinfail@gmail.com>2019-11-26 22:42:27 -0700
commita22c6311cc5fcc01c483fa110256f0d18e5d7271 (patch)
treee70e1ea7733a2b1b5c53f237741eee566be87c78 /Makefile
parent5ff59d4e8ba9c64963d36c8ea51e7a1d644aef48 (diff)
Added -f option to rm in clean command.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 05754f8..695d123 100644
--- a/Makefile
+++ b/Makefile
@@ -3,7 +3,7 @@ output: dwmblocks.o
dwmblocks.o: dwmblocks.c blocks.h
gcc -c -lX11 dwmblocks.c
clean:
- rm *.o *.gch dwmblocks
+ rm -f *.o *.gch dwmblocks
install: output
mkdir -p /usr/local/bin
cp -f dwmblocks /usr/local/bin