summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorBen Smith <binji@chromium.org>2015-09-06 11:32:07 -0700
committerBen Smith <binji@chromium.org>2015-09-06 11:32:07 -0700
commit716c211a66069d0f76ac67214feaf620150f20a2 (patch)
tree4516b57ff13adeda553c7f1098a9d29a88dfaf30 /Makefile
parent277dbc2c921812d3a33d8c33fa20765e466ecd0a (diff)
downloadwabt-716c211a66069d0f76ac67214feaf620150f20a2.tar.gz
wabt-716c211a66069d0f76ac67214feaf620150f20a2.tar.bz2
wabt-716c211a66069d0f76ac67214feaf620150f20a2.zip
use perfect hash to parse expressions
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 76105b0e..43d151aa 100644
--- a/Makefile
+++ b/Makefile
@@ -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)