summaryrefslogtreecommitdiff
path: root/wasm2c/examples/rot13/Makefile
blob: 35483310e6e5ea7ab2edbd72c2e400ee68039df8 (plain)
1
2
3
4
5
6
7
8
9
# Use implicit rules for compiling C files.
CFLAGS=-I../..
rot13: main.o rot13.o ../../wasm-rt-impl.o

rot13.wasm: rot13.wat
	../../../bin/wat2wasm $< -o $@

rot13.c: rot13.wasm
	../../../bin/wasm2c $< -o $@