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 /Makefile | |
parent | 9a7ecafdcccfb5ab874a1ef9389fed600cac8050 (diff) | |
parent | b259b140a32fa42a1950f33f1f135bacaf6603f1 (diff) | |
download | dwmblocks-c35edaad213371d46b6a768be342affb435ab964.tar.gz dwmblocks-c35edaad213371d46b6a768be342affb435ab964.tar.bz2 dwmblocks-c35edaad213371d46b6a768be342affb435ab964.zip |
Merge pull request #29 from crian/patch-1
POSIX Makefile
Diffstat (limited to '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 |