commit
c35edaad21
1 changed files with 5 additions and 1 deletions
6
Makefile
6
Makefile
|
@ -1,4 +1,6 @@
|
||||||
PREFIX ?= /usr/local
|
.POSIX:
|
||||||
|
|
||||||
|
PREFIX = /usr/local
|
||||||
|
|
||||||
output: dwmblocks.o
|
output: dwmblocks.o
|
||||||
gcc dwmblocks.o -lX11 -o dwmblocks
|
gcc dwmblocks.o -lX11 -o dwmblocks
|
||||||
|
@ -12,3 +14,5 @@ install: output
|
||||||
chmod 755 $(DESTDIR)$(PREFIX)/bin/dwmblocks
|
chmod 755 $(DESTDIR)$(PREFIX)/bin/dwmblocks
|
||||||
uninstall:
|
uninstall:
|
||||||
rm -f $(DESTDIR)$(PREFIX)/bin/dwmblocks
|
rm -f $(DESTDIR)$(PREFIX)/bin/dwmblocks
|
||||||
|
|
||||||
|
.PHONY: clean install uninstall
|
||||||
|
|
Loading…
Reference in a new issue