aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 264d490..42ae3a9 100644
--- a/Makefile
+++ b/Makefile
@@ -1,12 +1,12 @@
.POSIX:
PREFIX = /usr/local
-CC = gcc
+CC = cc
dwmblocks: dwmblocks.o
- $(CC) -march=tigerlake -O3 -pipe dwmblocks.o -lX11 -o dwmblocks
+ $(CC) -march=tigerlake -O3 -pipe dwmblocks.o -L/usr/local/lib -lX11 -o dwmblocks
dwmblocks.o: dwmblocks.c config.h
- $(CC) -march=tigerlake -O3 -pipe -c dwmblocks.c
+ $(CC) -I/usr/local/include -march=tigerlake -O3 -pipe -c dwmblocks.c
clean:
rm -f *.o *.gch dwmblocks
install: dwmblocks