diff options
author | Ben Smith <binjimin@gmail.com> | 2017-03-01 21:50:11 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-03-01 21:50:11 -0800 |
commit | 73fc2e25a9d49aa2188ed1ca25260ba76a475df3 (patch) | |
tree | 068e63137603de227367524af8515c0ea26125a2 /Makefile | |
parent | 61c9592d990cc20450300e2e0609f366a7a3a5b8 (diff) | |
download | wabt-73fc2e25a9d49aa2188ed1ca25260ba76a475df3.tar.gz wabt-73fc2e25a9d49aa2188ed1ca25260ba76a475df3.tar.bz2 wabt-73fc2e25a9d49aa2188ed1ca25260ba76a475df3.zip |
Update CMake and Makefile to use .hh instead of .h (#330)
The built-in CMake rules look for an .hh file instead of a .h when
building for C++. Without it, the build will always think that the
generated parser is stale and rebuild it.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -146,7 +146,7 @@ update-bison: src/prebuilt/ast-parser-gen.cc update-re2c: src/prebuilt/ast-lexer-gen.cc src/prebuilt/ast-parser-gen.cc: src/ast-parser.y - bison -o $@ $< --defines=src/prebuilt/ast-parser-gen.h --report=state + bison -o $@ $< --defines=src/prebuilt/ast-parser-gen.hh --report=state src/prebuilt/ast-lexer-gen.cc: src/ast-lexer.cc re2c --no-generation-date -bc -o $@ $< |