aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index c3ab930..97a1814 100644
--- a/Makefile
+++ b/Makefile
@@ -26,9 +26,9 @@ BIN := $(BUILD_DIR)/$(TARGET)
26 26
27# Compiler and linker configuration. 27# Compiler and linker configuration.
28CC := cc 28CC := cc
29CFLAGS := -Wall -Wextra -pedantic -std=c11 -DBIN_NAME=\"$(TARGET)\" 29CFLAGS := -Wall -Wextra -std=gnu11 -DBIN_NAME=\"$(TARGET)\"
30CFLAGS += $(INC_FLAGS) 30CFLAGS += $(INC_FLAGS)
31LDFLAGS := 31LDFLAGS := -lm
32LDLIBS := 32LDLIBS :=
33RELEASE_CFLAGS := -DNDEBUG -O2 33RELEASE_CFLAGS := -DNDEBUG -O2
34DEBUG_CFLAGS := -DDEBUG -g -fsanitize=address,undefined 34DEBUG_CFLAGS := -DDEBUG -g -fsanitize=address,undefined