commit e5ce0bdfe53e69c13910907925a820a338a24a50 parent d302fe8497fa275490bed2013d43c274416e02cb Author: mjkloeckner <martin.cachari@gmail.com> Date: Sun, 7 May 2023 01:02:02 -0300 enable compiler optimizations Diffstat:
M | Makefile | | | 2 | +- |
1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile @@ -1,5 +1,5 @@ CC := gcc -CFLAGS := -D_POSIX_C_SOURCE=199309L -Wall -Wshadow -pedantic -ansi -std=c99 +CFLAGS := -Wall -Wshadow -pedantic -ansi -std=c99 -O3 SRCS := $(wildcard *.c) OBJS := $(SRCS:.c=.o)