fix: fixed capitalisation bugs in command parsing

This commit is contained in:
Lorenzo Torres 2024-12-24 13:44:12 +01:00
parent 81a1c7447c
commit 9418c7b9a4
7 changed files with 107 additions and 5 deletions

View file

@ -15,7 +15,7 @@ INCS = -I.
LIBS = -lssl -lcrypto
# flags
CPPFLAGS = -DVERSION=\"${VERSION}\"
CFLAGS := -std=c99 -pedantic -Wall -O0 -Wno-gnu-label-as-value -Wno-gnu-zero-variadic-macro-arguments ${INCS} ${CPPFLAGS}
CFLAGS := -std=gnu99 -pedantic -Wall -O0 -Wno-gnu-label-as-value -Wno-gnu-zero-variadic-macro-arguments ${INCS} ${CPPFLAGS}
CFLAGS := ${CFLAGS} -g
LDFLAGS = ${LIBS}