From ea204b55b3f103b870f1d3533e4ff2e4355c5b05 Mon Sep 17 00:00:00 2001 From: Jesse Luehrs Date: Sun, 5 Jun 2016 07:38:51 -0400 Subject: try making things faster? --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 8c4d341..28d0e4b 100644 --- a/Makefile +++ b/Makefile @@ -9,7 +9,7 @@ OBJ = $(BUILD)parser.o \ $(BUILD)unicode-extra.o LIBS = glib-2.0 OPT ?= -g -CFLAGS ?= $(OPT) -Wall -Wextra -Werror -pedantic -std=c1x -D_XOPEN_SOURCE=600 +CFLAGS ?= $(OPT) -Wall -Wextra -pedantic -std=c1x -D_XOPEN_SOURCE=600 LDFLAGS ?= $(OPT) ALLCFLAGS = $(shell pkg-config --cflags $(LIBS)) $(CFLAGS) @@ -51,7 +51,7 @@ $(BUILD): $(SRC)screen.c: $(SRC)parser.h $(SRC)%.c: $(SRC)%.l - $(QUIET_LEX)$(LEX) -o $@ $< + $(QUIET_LEX)$(LEX) --fast -o $@ $< $(SRC)%.h: $(SRC)%.l $(QUIET_LEX)$(LEX) --header-file=$(<:.l=.h) -o /dev/null $< -- cgit v1.2.3-54-g00ecf