From d6e6291efe4281adb4d69071537f6f7010e71dfd Mon Sep 17 00:00:00 2001 From: Holden Rohrer Date: Thu, 28 May 2020 00:41:40 -0400 Subject: O2 optimizations --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index ee441d7..638890b 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,6 @@ .POSIX: OBJS = strbst.o ll.o nodelink.o read.o main.o -CFLAGS = -Wall -pedantic +CFLAGS = -Wall -pedantic -O2 CC = c99 tmplt: $(OBJS) $(CC) $(CFLAGS) $(LDFLAGS) $(OBJS) -o $@ -- cgit