summaryrefslogtreecommitdiff
path: root/wasm2c/examples/rot13/Makefile
blob: ba93d114d6c1136873b8e8ed74422efa09b7264a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# Use implicit rules for compiling C files.
CFLAGS=-I../..
LDLIBS=-lm

all: rot13

clean:
	rm -rf rot13 rot13.wasm rot13.c rot13.h *.o

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.h: rot13.wasm ../../../bin/wasm2c
	../../../bin/wasm2c $< -o rot13.c --disable-simd

.PHONY: all clean