commit dcb198d7d7da45b8d7cd2d241b42f8405bd049b1 parent 31b9d65b31dfd9af2f38769f11b942eafda28483 Author: Aidan <torrinfail@gmail.com> Date: Mon, 6 Jul 2020 02:10:33 -0600 Added variable in makefile to change c compiler Diffstat:
M | Makefile | | | 4 | ++-- |
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/Makefile b/Makefile @@ -1,7 +1,7 @@ PREFIX ?= /usr/local - +CC ?= cc output: dwmblocks.c blocks.h - cc `pkg-config --cflags x11` `pkg-config --libs x11` dwmblocks.c -o dwmblocks + ${CC} `pkg-config --cflags x11` `pkg-config --libs x11` dwmblocks.c -o dwmblocks clean: rm -f *.o *.gch dwmblocks install: output