aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorc2023-11-25 10:37:37 -0500
committerc2023-11-25 10:37:37 -0500
commitbf3767fa7f0f1687d930d0d137e76a0206545fd6 (patch)
tree30bc03851ecfa3618c19b4de4a895fc7fc284abd /Makefile
parent930ca8d3b760b33123ba877514a49eca5af35a6a (diff)
Functions with single arguments are possible.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index c5f9963..0a68937 100644
--- a/Makefile
+++ b/Makefile
@@ -1,8 +1,8 @@
BIN := halk
PREFIX := /usr/local/bin
CC := gcc
-REG_CFLAGS := -std=c99 -O3 -s
-DBG_CFLAGS := -std=c99 -Og -ggdb -pedantic
+REG_CFLAGS := -ansi -O3 -s
+DBG_CFLAGS := -ansi -Og -ggdb -pedantic
DBG_CFLAGS += -Wall -Wno-deprecated-declarations
DBG_CFLAGS += -fsanitize=leak,address,undefined -fno-omit-frame-pointer
CFLAGS := ${REG_CFLAGS}