diff options
author | Maria Matejka <mq@ucw.cz> | 2019-02-22 12:41:51 +0100 |
---|---|---|
committer | Maria Matejka <mq@ucw.cz> | 2019-02-22 12:41:51 +0100 |
commit | 412614c700085ac964b07ff9405403eaf02fa5b4 (patch) | |
tree | 6a2b4b29c609710142fd233db0d95d0ceb98e6e6 /conf | |
parent | ad702bae0ce95ee1913327dd13a877e6bf9b320d (diff) |
Conf: Switch for faster (and slightly bigger) lexer
Diffstat (limited to 'conf')
-rw-r--r-- | conf/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/conf/Makefile b/conf/Makefile index be823d40..3b65ad1e 100644 --- a/conf/Makefile +++ b/conf/Makefile @@ -23,7 +23,7 @@ $(o)cf-parse.tab.c: $(o)cf-parse.y $(BISON) $(BISON_DEBUG) $(BISONFLAGS) -dv -pcf_ -b $(@:.tab.c=) $< $(o)cf-lex.c: $(s)cf-lex.l - $(FLEX) $(FLEX_DEBUG) -s -B -8 -Pcf_ -o$@ $< + $(FLEX) $(FLEX_DEBUG) -f -s -B -8 -Pcf_ -o$@ $< $(o)cf-lex.o: $(o)cf-parse.tab.h $(o)keywords.h $(o)cf-lex.o: CFLAGS+=-Wno-sign-compare -Wno-unused-function |