summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorBen Smith <binjimin@gmail.com>2017-03-01 21:50:11 -0800
committerGitHub <noreply@github.com>2017-03-01 21:50:11 -0800
commit73fc2e25a9d49aa2188ed1ca25260ba76a475df3 (patch)
tree068e63137603de227367524af8515c0ea26125a2 /Makefile
parent61c9592d990cc20450300e2e0609f366a7a3a5b8 (diff)
downloadwabt-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--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 81209dbb..69b573ca 100644
--- a/Makefile
+++ b/Makefile
@@ -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 $@ $<