diff options
| author | TazyFoundSoup <gardendistrict0x0@outlook.com> | 2026-03-29 10:07:16 +1100 |
|---|---|---|
| committer | TazyFoundSoup <gardendistrict0x0@outlook.com> | 2026-03-29 10:07:16 +1100 |
| commit | c57380ed3e5c54c9325806a8b5135c7654c34b6f (patch) | |
| tree | 1eb98763147e8775551fe5ec7d8890e0b28c75ee /Makefile | |
| parent | 00574cca7b0cf820f4808a127891b5dc86c9d2a7 (diff) | |
refactor(Makefile): Use INCLUDES varible to store including directories
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -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 |
