summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJonathan Bradley <jcb@pikum.xyz>2025-08-20 09:45:36 -0400
committerJonathan Bradley <jcb@pikum.xyz>2025-08-20 09:45:36 -0400
commit687e3a317973eef368f4caf5648ac9f8ef848b79 (patch)
treed8a7aca2cbeb8dbb27f112f31f84c928e988b37b
parent86505b7176718f397c3be62ccf28d6a742676382 (diff)
Makefile: CC and CXX ?=
-rw-r--r--config.mk4
1 files changed, 2 insertions, 2 deletions
diff --git a/config.mk b/config.mk
index 817ca09..3657a80 100644
--- a/config.mk
+++ b/config.mk
@@ -47,5 +47,5 @@ CPPFLAGS = $(SHARED_FLAGS)
LDFLAGS = $(LIBS)
# compiler & linker
-CC = /usr/bin/gcc
-CXX = /usr/bin/g++
+CC ?= /usr/bin/gcc
+CXX ?= /usr/bin/g++