summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorBen Smith <binji@chromium.org>2015-09-11 16:17:01 -0700
committerBen Smith <binji@chromium.org>2015-09-11 16:17:01 -0700
commit0d980842448995db9f99046fa22fe3a109c02d42 (patch)
treebefc0d9bf9afd8cac8a15c39a23e8faa1848bcea /Makefile
parent9d0e170d5cc5bcf4c9aac71bc3082012b5f8e7aa (diff)
downloadwabt-0d980842448995db9f99046fa22fe3a109c02d42.tar.gz
wabt-0d980842448995db9f99046fa22fe3a109c02d42.tar.bz2
wabt-0d980842448995db9f99046fa22fe3a109c02d42.zip
add WASM_ prefix to enums
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 47b19073..4cd6ce95 100644
--- a/Makefile
+++ b/Makefile
@@ -4,7 +4,7 @@ ALL = sexpr-wasm
CFLAGS = -Wall -Werror -g
OBJS = out/sexpr-wasm.o out/wasm-parse.o out/wasm-gen.o
-HEADERS = src/wasm.h src/wasm-parse.h
+HEADERS = src/wasm.h src/wasm-parse.h src/hash.h
.PHONY: all
all: $(addprefix out/,$(ALL))
@@ -16,7 +16,7 @@ out/%.o: src/%.c $(HEADERS)
out/sexpr-wasm: out $(OBJS)
$(CC) -o $@ $(OBJS)
-hash.h: hash.txt
+src/hash.h: src/hash.txt
gperf --compare-strncmp --readonly-tables --struct-type $< --output-file $@
#### TESTS ####