diff options
author | Ben Smith <binji@chromium.org> | 2015-09-06 11:32:07 -0700 |
---|---|---|
committer | Ben Smith <binji@chromium.org> | 2015-09-06 11:32:07 -0700 |
commit | 716c211a66069d0f76ac67214feaf620150f20a2 (patch) | |
tree | 4516b57ff13adeda553c7f1098a9d29a88dfaf30 /Makefile | |
parent | 277dbc2c921812d3a33d8c33fa20765e466ecd0a (diff) | |
download | wabt-716c211a66069d0f76ac67214feaf620150f20a2.tar.gz wabt-716c211a66069d0f76ac67214feaf620150f20a2.tar.bz2 wabt-716c211a66069d0f76ac67214feaf620150f20a2.zip |
use perfect hash to parse expressions
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -10,9 +10,12 @@ all: $(addprefix out/,$(ALL)) out/: mkdir $@ -out/sexpr-wasm: sexpr-wasm.c | out +out/sexpr-wasm: sexpr-wasm.c hash.h | out $(CC) $(CFLAGS) -o $@ $< +hash.h: hash.txt + gperf --compare-strncmp --readonly-tables --struct-type $< --output-file $@ + #### TESTS #### TEST_EXES=$(shell python test/run-tests.py --list-exes) |