Remove -Werror for now.

The program should still compile if there is an unused function. Of course,
if we are making a release, we should be sure to make sure there are no
unused symbols.
This commit is contained in:
Jordan Bancino 2022-07-27 13:45:19 -04:00
parent bb2e42f659
commit 3989c370b8

View file

@ -15,7 +15,7 @@
: "${INCLUDES:=-Isrc/include}"
: "${CC:=cc}"
: "${CFLAGS:=-Wall -Werror -Wextra -pedantic -ansi -std=c89 -O3 $HEADERS $INCLUDES}"
: "${CFLAGS:=-Wall -Wextra -pedantic -ansi -std=c89 -O3 $HEADERS $INCLUDES}"
: "${LDFLAGS:=-static -flto -fdata-sections -ffunction-sections -s -Wl,-static -Wl,-gc-sections}"
: "${PROG:=telodendria}"