summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortorrinfail <torrinfail@gmail.com>2020-04-16 00:32:26 -0600
committerGitHub <noreply@github.com>2020-04-16 00:32:26 -0600
commit003a2238dcb871f2b0f68c1ecfc5268bba5dc92c (patch)
tree3b472ae4e5da250769083a26c4ea8fd986544a1d
parentfefab14beea22fa83ddee6b4d196ead0c9a34a28 (diff)
parent2b44212f45255acbd299ec6040568f247afd5088 (diff)
Merge pull request #3 from crian/master
Some Makefile additions by crian
-rw-r--r--Makefile9
1 files changed, 7 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index b75ae9a..c45a563 100644
--- a/Makefile
+++ b/Makefile
@@ -1,7 +1,12 @@
+PREFIX ?= /usr/local
+
output: dwmblocks.c blocks.h
cc `pkg-config --cflags x11` `pkg-config --libs x11` dwmblocks.c -o dwmblocks
clean:
rm -f *.o *.gch dwmblocks
install: output
- mkdir -p /usr/local/bin
- cp -f dwmblocks /usr/local/bin
+ mkdir -p $(DESTDIR)$(PREFIX)/bin
+ cp -f dwmblocks $(DESTDIR)$(PREFIX)/bin
+ chmod 755 $(DESTDIR)$(PREFIX)/bin/dwmblocks
+uninstall:
+ rm -f $(DESTDIR)$(PREFIX)/bin/dwmblocks