diff options
author | Ben Smith <binjimin@gmail.com> | 2018-01-10 16:32:10 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-01-10 16:32:10 -0800 |
commit | afc3f3a84d138b64e5d259ed61c70c51d4d0abe7 (patch) | |
tree | 4cf605b53e5a064a8eee8d435531c752fecb66f0 /Makefile | |
parent | ed1e3977f936ac4056a28afd0b5136ba054762b2 (diff) | |
download | wabt-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-- | Makefile | 9 |
1 files changed, 9 insertions, 0 deletions
@@ -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), \ |