summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorBen Smith <binji@chromium.org>2016-03-05 00:11:14 -0800
committerBen Smith <binji@chromium.org>2016-03-12 20:44:08 -0800
commit0e76a6403f1949326abbe99374acf546da2801d7 (patch)
tree4fa126e2863e7cc8df128c7c0a504b4557f409ca /Makefile
parent4caccea63e68765fbf2e179981c677e954002ac1 (diff)
downloadwabt-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--Makefile10
1 files changed, 10 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 0bf3910f..98f4f42f 100644
--- a/Makefile
+++ b/Makefile
@@ -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))))