summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorTazyFoundSoup <gardendistrict0x0@outlook.com>2026-03-28 16:24:03 +1100
committerTazyFoundSoup <gardendistrict0x0@outlook.com>2026-03-28 16:24:03 +1100
commitde8efd689efb5bb023ea5c1c2dc7ce487561a2ee (patch)
tree320888792066dbf3f1f1d9eb980b49ba9a08c5c6 /Makefile
parent55653d5e6e9be84550f1eaf0b48d02a97595528a (diff)
fix(Makefile): Do not include folders within the include directory
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 8ed4e3f..f24c6e2 100644
--- a/Makefile
+++ b/Makefile
@@ -4,7 +4,7 @@ AR ?= ar
OUTDIR = dist
LIB = libtinyff.a
-CFLAGS = -Wall -Wextra -Werror -std=c11 -Iinclude -Iinclude/tinyff -Iinclude/ext
+CFLAGS = -Wall -Wextra -Werror -std=c11 -Iinclude
DEBUG_FLAGS = -g -O0
RELEASE_FLAGS = -O2
SANFLAGS = -fsanitize=address,undefined -g -O1