diff options
author | Sam Clegg <sbc@chromium.org> | 2022-03-09 07:40:04 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-08 23:40:04 -0800 |
commit | da9f07ce054c7af5061279c3d237fd64d63d9f9b (patch) | |
tree | 58c7fcb9ab92e34890ad7135de227727dbc9dfcd /wasm2c/examples/rot13/Makefile | |
parent | 5d1724d2ecbdd481c092f83ea5fcfc0dcadf8716 (diff) | |
download | wabt-da9f07ce054c7af5061279c3d237fd64d63d9f9b.tar.gz wabt-da9f07ce054c7af5061279c3d237fd64d63d9f9b.tar.bz2 wabt-da9f07ce054c7af5061279c3d237fd64d63d9f9b.zip |
Improve wasm2c example update process. NFC (#1857)
Followup to #1851.
Diffstat (limited to 'wasm2c/examples/rot13/Makefile')
-rw-r--r-- | wasm2c/examples/rot13/Makefile | 14 |
1 files changed, 11 insertions, 3 deletions
diff --git a/wasm2c/examples/rot13/Makefile b/wasm2c/examples/rot13/Makefile index 35483310..b58db6be 100644 --- a/wasm2c/examples/rot13/Makefile +++ b/wasm2c/examples/rot13/Makefile @@ -1,9 +1,17 @@ # Use implicit rules for compiling C files. CFLAGS=-I../.. -rot13: main.o rot13.o ../../wasm-rt-impl.o -rot13.wasm: rot13.wat +all: rot13 + +clean: + rm -rf rot13 rot13.wasm rot13.c *.o + +rot13: main.o rot13.o ../../wasm-rt-impl.o ../../wasm-rt-os-unix.o -lm + +rot13.wasm: rot13.wat ../../../bin/wat2wasm ../../../bin/wat2wasm $< -o $@ -rot13.c: rot13.wasm +rot13.c: rot13.wasm ../../../bin/wasm2c ../../../bin/wasm2c $< -o $@ + +.PHONY: all clean |