offline-web/Makefile

17 lines
438 B
Makefile
Raw Normal View History

2025-07-23 15:21:39 -04:00
build: wasm native
native: model-native storage-native
model-native:
cargo build --features native -p offline-web-model
storage-native:
cargo build --features native -p offline-web-storage
wasm: model-wasm storage-wasm
model-wasm:
cargo build --target=wasm32-unknown-unknown --features wasm -p offline-web-model --verbose
storage-wasm:
cargo build --target=wasm32-unknown-unknown --features wasm -p offline-web-storage --verbose