summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTazyFoundSoup <gardendistrict0x0@outlook.com>2026-03-01 13:14:55 +1100
committerTazyFoundSoup <gardendistrict0x0@outlook.com>2026-03-01 13:15:46 +1100
commit260d176afd99c3c1ada6d5ddc24c7f8c2b69388b (patch)
tree4a1c02f80fb3526be1d5f336137982fb466827e4
parent6df7e575c92190fc3d89d2b78b24cc96b4b0bc0d (diff)
refactor(make): Change CFLAGS formatting to multiline
-rw-r--r--Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index e8f0229..83e2487 100644
--- a/Makefile
+++ b/Makefile
@@ -1,6 +1,9 @@
CC=gcc
AR=ar
-CFLAGS=-Wall -Wextra -std=c11 -O2 -Iinclude -Iinclude/tinyff -Iinclude/ext
+CFLAGS=-Wall -Wextra -std=c11 -O2 \
+ -Iinclude \
+ -Iinclude/tinyff \
+ -Iinclude/ext
SRC=$(shell find src -name "*.c")
OBJ=$(patsubst src/%.c,$(OUTDIR)/src/%.o,$(SRC))