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:43:43 +0100 |
commit | 7c36eb3e8bd7d06f65dc7319d42b6abe782c5b89 (patch) | |
tree | 0155cb7ee93d0350b06f655acb99fe28757b29df /conf | |
parent | 93af78d2d29ce11e20d46f60cfe1d3ef68052e5c (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 39628bff..984624b4 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 |