commit b259b140a32fa42a1950f33f1f135bacaf6603f1
parent 9a7ecafdcccfb5ab874a1ef9389fed600cac8050
Author: Christian S <crian84@gmail.com>
Date: Sun, 31 May 2020 17:59:42 +0200
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