diff options
| author | Ruben Beltran del Rio <git@r.bdr.sh> | 2025-09-19 17:37:36 +0200 |
|---|---|---|
| committer | Ruben Beltran del Rio <git@r.bdr.sh> | 2025-09-19 17:37:36 +0200 |
| commit | e9553cf80c3a5588b68a38ea7a99936a8b9b88b7 (patch) | |
| tree | 3a60831f6142470467cc14e8fb7e160613f5c711 /Makefile | |
| parent | 00ea2943c81d2b3a8531e8b7b591de3443b1250c (diff) | |
Fix warnings for older compilers
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |