commit 74d2779f1cd1b8424f38fa5095885e15062aaeac parent 2b0fbe6919256e8b4adb07d12cbbf89623eda6c5 Author: William Casarin <jb55@jb55.com> Date: Mon, 27 May 2019 07:36:11 -0700 optimized! Diffstat:
M | Makefile | | | 2 | +- |
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Makefile b/Makefile @@ -3,7 +3,7 @@ BIN=bcalc DEPS=$(wildcard deps/*/*.c) $(GEN) PREFIX ?= /usr/local -CFLAGS = -O0 -g -std=c99 +CFLAGS = -O2 -g -std=c99 SRC = num.c DEPS = $(wildcard deps/*/*.c) $(SRC) OBJS = $(DEPS:.c=.o) parser.tab.o lex.yy.o