diff options
author | Ben Smith <binji@chromium.org> | 2015-09-11 16:17:01 -0700 |
---|---|---|
committer | Ben Smith <binji@chromium.org> | 2015-09-11 16:17:01 -0700 |
commit | 0d980842448995db9f99046fa22fe3a109c02d42 (patch) | |
tree | befc0d9bf9afd8cac8a15c39a23e8faa1848bcea /Makefile | |
parent | 9d0e170d5cc5bcf4c9aac71bc3082012b5f8e7aa (diff) | |
download | wabt-0d980842448995db9f99046fa22fe3a109c02d42.tar.gz wabt-0d980842448995db9f99046fa22fe3a109c02d42.tar.bz2 wabt-0d980842448995db9f99046fa22fe3a109c02d42.zip |
add WASM_ prefix to enums
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 #### |