summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLLLL Colonq <llll@colonq>2026-08-28 21:44:47 -0400
committerLLLL Colonq <llll@colonq>2026-08-28 21:44:47 -0400
commit6ebac820c84b218a45368eeaf1c853ff9c9d638f (patch)
treea703517cc6879ba44942cb1e3ec93c47f9cdca7b
parent920b25ddf09cb4c51797b7414a661a369704a32b (diff)
gastro: Add -O2
-rw-r--r--gastro/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/gastro/Makefile b/gastro/Makefile
index eac4416..d1c3f1e 100644
--- a/gastro/Makefile
+++ b/gastro/Makefile
@@ -1,7 +1,7 @@
CC ?= gcc
AR ?= ar
override CPPFLAGS += -MMD -MP
-override CFLAGS += --std=c99 -g -Ideps/ -Isrc/ -Iinclude/ -Wall -Wextra -Wconversion -Wformat-security -Wshadow -Wpointer-arith -Wstrict-prototypes -Wmissing-prototypes -Wnull-dereference -Wfloat-equal -Wundef -Wpointer-arith -Wbad-function-cast -Wlogical-op -Wmissing-braces -Wcast-align -Wstrict-overflow=5 -fwrapv -fPIC
+override CFLAGS += -O2 --std=c99 -g -Ideps/ -Isrc/ -Iinclude/ -Wall -Wextra -Wconversion -Wformat-security -Wshadow -Wpointer-arith -Wstrict-prototypes -Wmissing-prototypes -Wnull-dereference -Wfloat-equal -Wundef -Wpointer-arith -Wbad-function-cast -Wlogical-op -Wmissing-braces -Wcast-align -Wstrict-overflow=5 -fwrapv -fPIC
override LDFLAGS += -g -lraylib -lcolonq-qoi
BUILD = build_$(CC)