Update CFLAGS and CTESTFLAGS to use C99 standard
This commit is contained in:
parent
40007c27a6
commit
cceedd2e46
|
|
@ -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
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue