diff options
author | Ben Smith <binji@chromium.org> | 2016-03-05 00:11:14 -0800 |
---|---|---|
committer | Ben Smith <binji@chromium.org> | 2016-03-12 20:44:08 -0800 |
commit | 0e76a6403f1949326abbe99374acf546da2801d7 (patch) | |
tree | 4fa126e2863e7cc8df128c7c0a504b4557f409ca /Makefile | |
parent | 4caccea63e68765fbf2e179981c677e954002ac1 (diff) | |
download | wabt-0e76a6403f1949326abbe99374acf546da2801d7.tar.gz wabt-0e76a6403f1949326abbe99374acf546da2801d7.tar.bz2 wabt-0e76a6403f1949326abbe99374acf546da2801d7.zip |
move prebuild flex/bison to src/prebuilt
Also add make update-{bison,flex} to build it, and modify CMakeLists.txt
to use it.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 10 |
1 files changed, 10 insertions, 0 deletions
@@ -79,6 +79,16 @@ all: sexpr-wasm .PHONY: test-everything test-everything: +.PHONY: update-bison update-flex +update-bison: src/prebuilt/wasm-bison-parser.c +update-flex: src/prebuilt/wasm-flex-lexer.c + +src/prebuilt/wasm-bison-parser.c: src/wasm-bison-parser.y + bison -o $@ $< --defines=src/prebuilt/wasm-bison-parser.h + +src/prebuilt/wasm-flex-lexer.c: src/wasm-flex-lexer.l + flex -o $@ $< + # defaults with simple names $(foreach SANITIZER,$(SANITIZERS), \ $(eval $(call DEFAULT,$(DEFAULT_COMPILER),$(DEFAULT_BUILD_TYPE),sexpr-wasm,$(SANITIZER)))) |