commit c35edaad213371d46b6a768be342affb435ab964
parent 9a7ecafdcccfb5ab874a1ef9389fed600cac8050
Author: Luke Smith <luke@lukesmith.xyz>
Date: Sun, 31 May 2020 12:11:01 -0400
Merge pull request #29 from crian/patch-1
POSIX Makefile
Diffstat:
1 file changed, 5 insertions(+), 1 deletion(-)
diff --git a/Makefile b/Makefile
@@ -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