Do not compile tools with LTO

Some older systems do not support LTO, and it's unnecessary
for these simple single-file tools
This commit is contained in:
Rangi 2026-01-07 22:10:33 -05:00
parent a3dd44d76e
commit e4a41d447b

View File

@ -1,7 +1,7 @@
.PHONY: all clean
CC := gcc
CFLAGS := -O3 -flto -std=c11 -Wall -Wextra -pedantic
CFLAGS := -O3 -std=c11 -Wall -Wextra -pedantic
tools := \
gbcpal \