aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorRuben Beltran del Rio <git@r.bdr.sh>2025-09-19 17:37:36 +0200
committerRuben Beltran del Rio <git@r.bdr.sh>2025-09-19 17:37:36 +0200
commite9553cf80c3a5588b68a38ea7a99936a8b9b88b7 (patch)
tree3a60831f6142470467cc14e8fb7e160613f5c711 /Makefile
parent00ea2943c81d2b3a8531e8b7b591de3443b1250c (diff)
Fix warnings for older compilers
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 76a6d9c..7e2145e 100644
--- a/Makefile
+++ b/Makefile
@@ -1,7 +1,7 @@
# WMAP Parser Makefile
# ANSI C compatible library with clean build structure
-CC = gcc
+CC ?= gcc
CFLAGS_RELEASE = -ansi -pedantic -Wall -Wextra -O2 -fomit-frame-pointer
CFLAGS_DEBUG = -ansi -pedantic -Wall -Wextra -g -DDEBUG