diff options
author | c | 2023-11-25 10:37:37 -0500 |
---|---|---|
committer | c | 2023-11-25 10:37:37 -0500 |
commit | bf3767fa7f0f1687d930d0d137e76a0206545fd6 (patch) | |
tree | 30bc03851ecfa3618c19b4de4a895fc7fc284abd /Makefile | |
parent | 930ca8d3b760b33123ba877514a49eca5af35a6a (diff) |
Functions with single arguments are possible.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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} |