diff options
author | David Rubin <87927264+Rexicon226@users.noreply.github.com> | 2024-06-03 07:46:34 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-06-03 14:46:34 +0000 |
commit | 4beb52501f863f1cbd92e0ce4879f04f473935b5 (patch) | |
tree | 368c6580e84aebdf6b8d081848f2d8deaffca9b1 /wasm2c/examples/rot13/Makefile | |
parent | 2c50f59f518968643a36e800c0268bcfabc485ac (diff) | |
download | wabt-4beb52501f863f1cbd92e0ce4879f04f473935b5.tar.gz wabt-4beb52501f863f1cbd92e0ce4879f04f473935b5.tar.bz2 wabt-4beb52501f863f1cbd92e0ce4879f04f473935b5.zip |
Correct wasm2c example Makefiles (#2426)
- Passing "-lm" into the prereq isn't the correct way add the flag. This correctly adds it to the command.
- The "rot13" example incorrectly assumed that the "rot13.h" file would be generated by the time that "main.c"
was being compiled, however there is no rule supporting this and it would fail.
I've also added "rot13.h" to the clean rule.
Diffstat (limited to 'wasm2c/examples/rot13/Makefile')
-rw-r--r-- | wasm2c/examples/rot13/Makefile | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/wasm2c/examples/rot13/Makefile b/wasm2c/examples/rot13/Makefile index 1d46b3a9..ba93d114 100644 --- a/wasm2c/examples/rot13/Makefile +++ b/wasm2c/examples/rot13/Makefile @@ -1,17 +1,20 @@ # Use implicit rules for compiling C files. CFLAGS=-I../.. +LDLIBS=-lm all: rot13 clean: - rm -rf rot13 rot13.wasm rot13.c *.o + rm -rf rot13 rot13.wasm rot13.c rot13.h *.o -rot13: main.o rot13.o ../../wasm-rt-impl.o ../../wasm-rt-mem-impl.o -lm +rot13: main.o rot13.o ../../wasm-rt-impl.o ../../wasm-rt-mem-impl.o + +main.o: rot13.h rot13.wasm: rot13.wat ../../../bin/wat2wasm ../../../bin/wat2wasm $< -o $@ -rot13.c: rot13.wasm ../../../bin/wasm2c - ../../../bin/wasm2c $< -o $@ --disable-simd +rot13.c rot13.h: rot13.wasm ../../../bin/wasm2c + ../../../bin/wasm2c $< -o rot13.c --disable-simd .PHONY: all clean |