Browse Source

Added -f option to rm in clean command.

master
Aidan 5 years ago
parent
commit
a22c6311cc
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      Makefile

+ 1
- 1
Makefile View File

@ -3,7 +3,7 @@ output: dwmblocks.o
dwmblocks.o: dwmblocks.c blocks.h dwmblocks.o: dwmblocks.c blocks.h
gcc -c -lX11 dwmblocks.c gcc -c -lX11 dwmblocks.c
clean: clean:
rm *.o *.gch dwmblocks
rm -f *.o *.gch dwmblocks
install: output install: output
mkdir -p /usr/local/bin mkdir -p /usr/local/bin
cp -f dwmblocks /usr/local/bin cp -f dwmblocks /usr/local/bin

Loading…
Cancel
Save