diff options
| author | Luke Smith <luke@lukesmith.xyz> | 2020-05-31 12:11:01 -0400 | 
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-05-31 12:11:01 -0400 | 
| commit | c35edaad213371d46b6a768be342affb435ab964 (patch) | |
| tree | 0764b34d192bf5b7347577d7812b78e3de697256 | |
| parent | Merge pull request #28 from mackarelfish/master (diff) | |
| parent | POSIX Makefile (diff) | |
| download | dwmblocks-c35edaad213371d46b6a768be342affb435ab964.tar.gz dwmblocks-c35edaad213371d46b6a768be342affb435ab964.tar.bz2 dwmblocks-c35edaad213371d46b6a768be342affb435ab964.tar.xz dwmblocks-c35edaad213371d46b6a768be342affb435ab964.tar.zst dwmblocks-c35edaad213371d46b6a768be342affb435ab964.zip | |
Merge pull request #29 from crian/patch-1
POSIX Makefile
| -rw-r--r-- | Makefile | 6 | 
1 files changed, 5 insertions, 1 deletions
| @@ -1,4 +1,6 @@ -PREFIX ?= /usr/local +.POSIX: + +PREFIX = /usr/local  output: dwmblocks.o  	gcc dwmblocks.o -lX11 -o dwmblocks @@ -12,3 +14,5 @@ install: output  	chmod 755 $(DESTDIR)$(PREFIX)/bin/dwmblocks  uninstall:  	rm -f $(DESTDIR)$(PREFIX)/bin/dwmblocks + +.PHONY: clean install uninstall | 
