pinosaur
/
dwmblocks.git
/ commitdiff
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
fefab14
)
Makefile: Use DESTDIR and PREFIX
author
crian
<crian84@gmail.com>
Mon, 2 Mar 2020 12:36:26 +0000
(13:36 +0100)
committer
crian
<crian84@gmail.com>
Mon, 2 Mar 2020 16:01:10 +0000
(17:01 +0100)
Makefile
patch
|
blob
|
history
diff --git
a/Makefile
b/Makefile
index
b75ae9a
..
4af193c
100644
(file)
--- a/
Makefile
+++ b/
Makefile
@@
-1,7
+1,9
@@
+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