From 7723c5f8a9f0ea5345ebefecd31fe22f3601b32e Mon Sep 17 00:00:00 2001 From: "Juan J. Martinez" Date: Thu, 22 Jun 2023 22:07:56 +0100 Subject: Treat warnings as errors --- src/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Makefile b/src/Makefile index 50b1179..8f3c13a 100644 --- a/src/Makefile +++ b/src/Makefile @@ -1,6 +1,6 @@ BIN := ../game.exe CC := i586-pc-msdosdjgpp-gcc -CFLAGS := -I. -c -Wall -pedantic -O2 -march=i386 +CFLAGS := -I. -c -Wall -Werror -pedantic -O2 -march=i386 LDFLAGS := -s IMGS := $(wildcard ../data/*.png) -- cgit v1.2.3