phasm/Makefile
Johan B.W. de Vries 2a93d6125e ideas [skip-ci]
2021-04-03 20:40:11 +02:00

17 lines
264 B
Makefile

%.wat: %.py compile.py
python3.8 compile.py $< $@
%.wasm: %.wat
wat2wasm $^ -o $@
server:
python3.8 -m http.server
test: venv/.done
venv/bin/pytest tests
venv/.done: requirements.txt
python3.8 -m venv venv
venv/bin/python3 -m pip install -r $^
touch $@