Fail compilation on warning

This commit is contained in:
Kyler Olsen 2025-11-23 23:47:41 -07:00
parent e80e1756e0
commit b2f4b8d850
1 changed files with 2 additions and 2 deletions

View File

@ -1,9 +1,9 @@
# Makefile for SLS project with automatic header dependencies # Makefile for SLS project with automatic header dependencies
CC ?= gcc CC ?= gcc
CFLAGS ?= -std=c99 -Wall -Wextra -g -Iinclude -MMD -MP CFLAGS ?= -std=c99 -Wall -Wextra -Werror -g -Iinclude -MMD -MP
LDFLAGS ?= LDFLAGS ?=
CTESTFLAGS ?= -std=c99 -Wall -Wextra -Wno-unused-function -g -O0 -Iinclude -MMD -MP CTESTFLAGS ?= -std=c99 -Wall -Wextra -Wno-unused-function -Werror -g -O0 -Iinclude -MMD -MP
SRCDIR := src SRCDIR := src
OBJDIR := obj OBJDIR := obj