From 93bb0f481e9709e3aa737c889ce9df0ad9de1585 Mon Sep 17 00:00:00 2001 From: tslil Date: Sun, 3 Jan 2021 17:36:12 -0500 Subject: Set dialect to C99 --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 07e1cdc..fb8c548 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,6 @@ IDIR=include TPDIR=3rd-party -CFLAGS=-g -Wall -I$(IDIR) -I$(TPDIR) +CFLAGS=-g -Wall -Wextra -std=c99 -D_DEFAULT_SOURCE -I$(IDIR) -I$(TPDIR) LIBS= SRCS=$(wildcard src/*.c) $(wildcard include/*.c) $(wildcard 3rd-party/*.c) -- cgit v1.2.3