Merge branch 'master' into strings

This commit is contained in:
Kyler Olsen 2025-11-11 18:48:41 -07:00
commit 2b44aad1c7
1 changed files with 2 additions and 2 deletions

View File

@ -1,9 +1,9 @@
# Makefile for SLS project with automatic header dependencies
CC ?= gcc
CFLAGS ?= -std=c11 -Wall -Wextra -g -Iinclude -MMD -MP
CFLAGS ?= -std=c99 -Wall -Wextra -g -Iinclude -MMD -MP
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
OBJDIR := obj