aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authortslil <tslil@posteo.de>2021-01-03 17:36:12 -0500
committertslil <tslil@posteo.de>2026-08-28 19:37:41 +0100
commit93bb0f481e9709e3aa737c889ce9df0ad9de1585 (patch)
tree98a90b318706613827d3cadf2b72824f5192e76d /Makefile
parent60dfb616282023dbc1f567355357e27018693077 (diff)
Set dialect to C99
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
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)