mirror of
https://github.com/haileys/mixlab.git
synced 2026-02-12 07:50:42 +01:00
14 lines
299 B
Makefile
14 lines
299 B
Makefile
.PHONY: build release run check
|
|
|
|
build:
|
|
./frontend-exec.sh ./build.sh && cargo build
|
|
|
|
release:
|
|
./frontend-exec.sh ./build.sh --release && cargo build --release
|
|
|
|
run:
|
|
./frontend-exec.sh ./build.sh && cargo run
|
|
|
|
check:
|
|
./frontend-exec.sh cargo check --target=wasm32-unknown-unknown && cargo check
|