From 73fc2e25a9d49aa2188ed1ca25260ba76a475df3 Mon Sep 17 00:00:00 2001 From: Ben Smith Date: Wed, 1 Mar 2017 21:50:11 -0800 Subject: 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. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Makefile') 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 $@ $< -- cgit v1.2.3