dwmblocks

I use polybar now
Log | Files | Refs | README | LICENSE

commit 8d8c208ac81a773825323f534448613f47877bf1
parent 765850c8f756f2b57ba4e9107b6fc7032c983712
Author: Luke Smith <luke@lukesmith.xyz>
Date:   Tue,  3 Mar 2020 16:50:35 -0500

Merge pull request #3 from crian/patch-1

Makefile: Use DESTDIR/PREFIX and add uninstall
Diffstat:
MMakefile | 10+++++++---
1 file changed, 7 insertions(+), 3 deletions(-)

diff --git a/Makefile b/Makefile @@ -1,3 +1,5 @@ +PREFIX ?= /usr/local + output: dwmblocks.o gcc dwmblocks.o -lX11 -o dwmblocks dwmblocks.o: dwmblocks.c config.h @@ -5,6 +7,8 @@ dwmblocks.o: dwmblocks.c config.h clean: rm *.o *.gch dwmblocks install: output - mkdir -p /usr/local/bin - cp -f dwmblocks /usr/local/bin - chmod 755 /usr/local/bin/dwmblocks + mkdir -p $(DESTDIR)$(PREFIX)/bin + cp -f dwmblocks $(DESTDIR)$(PREFIX)/bin + chmod 755 $(DESTDIR)$(PREFIX)/bin/dwmblocks +uninstall: + rm -f $(DESTDIR)$(PREFIX)/bin/dwmblocks