aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHolden Rohrer <hr@hrhr.dev>2020-05-28 00:41:40 -0400
committerHolden Rohrer <hr@hrhr.dev>2020-05-28 00:41:40 -0400
commitd6e6291efe4281adb4d69071537f6f7010e71dfd (patch)
tree64a047af598c2cc5a744e6e1ee8d9295e43d5031
parent945e882abbb877e704a17651c1e7e633fe668a7f (diff)
O2 optimizations
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
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 $@