1
1
mirror of https://github.com/theoludwig/libcproject.git synced 2024-07-17 23:30:12 +02:00

perf: compile with -O3 gcc flag

This commit is contained in:
Théo LUDWIG 2023-06-24 20:30:34 +02:00
parent 20d31ba2e3
commit d850f04069
Signed by: theoludwig
GPG Key ID: ADFE5A563D718F3B

View File

@ -1,6 +1,6 @@
LIBRARY_NAME = libcproject
CC = gcc
CC_FLAGS = -Wall -Wextra -Wfloat-equal -Wundef -Werror -std=c17 -pedantic -pedantic-errors -I./
CC_FLAGS = -Wall -Wextra -Wfloat-equal -Wundef -Werror -std=c17 -pedantic -pedantic-errors -O3 -I./
LIB = ./build/${LIBRARY_NAME}.a
LIB_CC_FLAGS = -L. -l:${LIB}
LIB_SOURCES = $(wildcard lib/*.c)