summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorMr Chainman <mr.chainman@0box.eu>2020-01-02 16:31:24 +0100
committerMr Chainman <mr.chainman@0box.eu>2020-01-02 16:31:24 +0100
commit91c492319b9554fef0ce192552e9ce489d592ec2 (patch)
treeee516c0c43e94bd7fe4257462a98abcb9a9bb484 /Makefile
parent4f6b1e11f248ed1a5d524b63d7a55c7c7ccb8d32 (diff)
downloaddwmblocks-91c492319b9554fef0ce192552e9ce489d592ec2.tar.gz
dwmblocks-91c492319b9554fef0ce192552e9ce489d592ec2.tar.bz2
dwmblocks-91c492319b9554fef0ce192552e9ce489d592ec2.zip
Added chmod in Makefile to prevent execution errors
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 05754f8..f9bc68d 100644
--- a/Makefile
+++ b/Makefile
@@ -1,9 +1,10 @@
output: dwmblocks.o
gcc dwmblocks.o -lX11 -o dwmblocks
dwmblocks.o: dwmblocks.c blocks.h
- gcc -c -lX11 dwmblocks.c
+ gcc -c -lX11 dwmblocks.c
clean:
rm *.o *.gch dwmblocks
install: output
mkdir -p /usr/local/bin
cp -f dwmblocks /usr/local/bin
+ chmod 755 /usr/local/bin/dwmblocks
Software created with 💖