jotdown/examples/jotdown_wasm/Makefile

16 lines
218 B
Makefile
Raw Normal View History

2023-02-05 13:41:11 -05:00
WASM=pkg/jotdown_wasm_bg.wasm
SRC=$(shell find src ../../src -name '*.rs')
${WASM}: ${SRC}
wasm-pack build --release --target web
wasm: ${WASM}
run: ${WASM}
python -m http.server
clean:
rm -rf pkg
cargo clean