diff options
author | Holden Rohrer <hr@hrhr.dev> | 2020-05-28 00:41:40 -0400 |
---|---|---|
committer | Holden Rohrer <hr@hrhr.dev> | 2020-05-28 00:41:40 -0400 |
commit | d6e6291efe4281adb4d69071537f6f7010e71dfd (patch) | |
tree | 64a047af598c2cc5a744e6e1ee8d9295e43d5031 /Makefile | |
parent | 945e882abbb877e704a17651c1e7e633fe668a7f (diff) |
O2 optimizations
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 $@ |