summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorBen Smith <binjimin@gmail.com>2018-01-10 16:32:10 -0800
committerGitHub <noreply@github.com>2018-01-10 16:32:10 -0800
commitafc3f3a84d138b64e5d259ed61c70c51d4d0abe7 (patch)
tree4cf605b53e5a064a8eee8d435531c752fecb66f0 /Makefile
parented1e3977f936ac4056a28afd0b5136ba054762b2 (diff)
downloadwabt-afc3f3a84d138b64e5d259ed61c70c51d4d0abe7.tar.gz
wabt-afc3f3a84d138b64e5d259ed61c70c51d4d0abe7.tar.bz2
wabt-afc3f3a84d138b64e5d259ed61c70c51d4d0abe7.zip
Use templates for generating wasm2c source (#712)
This uses a very simple template syntax, without any advanced features: ``` %%top ... %%bottom ... ``` This template will generate output with two C strings: ``` const char SECTION_NAME(top)[] = ... ... const char SECTION_NAME(bottom)[] = ... ... ``` To update the generated files, run `make update-wasm2c`.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile9
1 files changed, 9 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 2ed3c773..a40d44fd 100644
--- a/Makefile
+++ b/Makefile
@@ -146,6 +146,15 @@ update-re2c: src/prebuilt/wast-lexer-gen.cc
src/prebuilt/wast-lexer-gen.cc: src/wast-lexer.cc
re2c -W -Werror --no-generation-date -bc8 -o $@ $<
+.PHONY: update-wasm2c
+update-wasm2c: src/prebuilt/wasm2c.include.c src/prebuilt/wasm2c.include.h
+
+src/prebuilt/wasm2c.include.c: src/wasm2c.c.tmpl
+ src/wasm2c_tmpl.py -o $@ $<
+
+src/prebuilt/wasm2c.include.h: src/wasm2c.h.tmpl
+ src/wasm2c_tmpl.py -o $@ $<
+
# running CMake
$(foreach CONFIG,$(CONFIGS), \
$(foreach COMPILER,$(COMPILERS), \