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

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

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