ignore some useless warnings

This commit is contained in:
Mylloon 2023-04-30 17:04:55 +02:00
parent 033c93af42
commit 3ea25f83ad
Signed by: Anri
GPG key ID: A82D63DFF8D1317F

View file

@ -60,7 +60,10 @@ all: $(PROGNAME)
$(PROGNAME): $(OBJ)
$(CC) $(OBJ) $(LDFLAGS) -o $(PROGNAME)
debug: CFLAGS = -Wall -Wextra -Wconversion -Wdouble-promotion -Wshadow -Wcast-align -Wstrict-prototypes -fanalyzer -fsanitize=undefined -fsanitize-undefined-trap-on-error -g3
debug: CFLAGS = -Wall -Wextra -Wconversion -Wno-sign-conversion -Wno-unused-parameter \
-Wno-unused-function -Wdouble-promotion -Wshadow -Wcast-align \
-Wstrict-prototypes -fanalyzer -fsanitize=undefined \
-fsanitize-undefined-trap-on-error -g3
debug: $(PROGNAME)
%.o: %.c