Fix output directory for generated antlr code

This commit is contained in:
Florian Hahn 2014-12-26 20:49:20 +01:00
parent 3dcc409fac
commit 288195370c
1 changed files with 1 additions and 1 deletions

View File

@ -31,7 +31,7 @@ $(BG):
$(Q)mkdir -p $(BG)
$(BG)RustLexer.class: $(BG) $(SG)RustLexer.g4
$(Q)$(CFG_ANTLR4) -o $(B)grammar $(SG)RustLexer.g4
$(Q)$(CFG_ANTLR4) -o $(BG) $(SG)RustLexer.g4
$(Q)$(CFG_JAVAC) -d $(BG) $(BG)RustLexer.java
check-build-lexer-verifier: $(BG)verify