mirror of
https://github.com/haileys/mixlab.git
synced 2026-02-14 00:35:34 +01:00
22 lines
425 B
Makefile
22 lines
425 B
Makefile
.PHONY: build profile release run check
|
|
|
|
build:
|
|
./frontend-exec.sh ./build.sh && cargo build
|
|
|
|
profile:
|
|
./frontend-exec.sh ./build.sh --profiling && cargo build --release
|
|
|
|
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
|
|
|
|
.PHONY: b r c
|
|
b: build
|
|
r: run
|
|
c: check
|