summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authortorrinfail <torrinfail@gmail.com>2020-07-28 11:06:04 -0600
committerGitHub <noreply@github.com>2020-07-28 11:06:04 -0600
commit7a570d5760759329692f98b3514662cf673ea92e (patch)
tree066ab26ff3b37041707d6a0671e0f43a6db25ad2 /Makefile
parente62fbe64994a8d0c38edf806f641826eb3a2b430 (diff)
parentdcb198d7d7da45b8d7cd2d241b42f8405bd049b1 (diff)
Merge branch 'master' into patch-1
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index b12bff6..ad7e701 100644
--- a/Makefile
+++ b/Makefile
@@ -1,7 +1,7 @@
PREFIX ?= /usr/local
-
+CC ?= cc
output: dwmblocks.c blocks.h
- cc dwmblocks.c `pkg-config --cflags x11` `pkg-config --libs x11` -o dwmblocks
+ ${CC} dwmblocks.c `pkg-config --cflags x11` `pkg-config --libs x11` -o dwmblocks
clean:
rm -f *.o *.gch dwmblocks
install: output