summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile4
1 files changed, 3 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 9cebce2..5ed5f9d 100644
--- a/Makefile
+++ b/Makefile
@@ -4,7 +4,9 @@ AR ?= ar
OUTDIR = dist
LIB = libtinyff.a
-CFLAGS = -Wall -Wextra -Werror -std=c11 -Iinclude
+INCLUDES = -Iinclude
+CFLAGS = -Wall -Wextra -Werror -std=c11 $(INCLUDES)
+
DEBUG_FLAGS = -g -O0
RELEASE_FLAGS = -O2
SANFLAGS = -fsanitize=address,undefined -g -O1