Update CFLAGS and CTESTFLAGS to use C99 standard

This commit is contained in:
Kyler Olsen 2025-11-11 18:44:29 -07:00
parent 40007c27a6
commit cceedd2e46
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=c11 -Wall -Wextra -g -Iinclude -MMD -MP CFLAGS ?= -std=c99 -Wall -Wextra -g -Iinclude -MMD -MP
LDFLAGS ?= LDFLAGS ?=
CTESTFLAGS ?= -std=c11 -Wall -Wextra -Wno-unused-function -g -O0 -Iinclude -MMD -MP CTESTFLAGS ?= -std=c99 -Wall -Wextra -Wno-unused-function -g -O0 -Iinclude -MMD -MP
SRCDIR := src SRCDIR := src
OBJDIR := obj OBJDIR := obj