-
Notifications
You must be signed in to change notification settings - Fork 55
/
Makefile
56 lines (44 loc) · 1.31 KB
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
.PHONY: build
build:
cargo build
.PHONY: clean
clean:
rm -rf js/dist/*
rm -rf target/
.PHONY: check
check: checkformatting test lint
.PHONY: checkformatting
checkformatting:
cargo fmt --check
.PHONY: docs
doc:
cargo doc
.PHONY: run-example
example:
cd ocrs/examples && ./download-models.sh
cargo run -p ocrs --release --example hello_ocr ocrs/examples/rust-book.jpg
.PHONY: lint
lint:
cargo clippy --workspace
.PHONY: test
test:
cargo test --workspace
.PHONY: test-e2e
test-e2e:
python tools/test-e2e.py ocrs-cli/test-data/
.PHONY: update-e2e
update-e2e:
python tools/test-e2e.py --update ocrs-cli/test-data/
.PHONY: wasm
wasm:
RUSTFLAGS="-C target-feature=+simd128" cargo build --release --target wasm32-unknown-unknown --package ocrs
wasm-bindgen target/wasm32-unknown-unknown/release/ocrs.wasm --out-dir js/dist/ --target web --reference-types --weak-refs
tools/optimize-wasm.sh js/dist/ocrs_bg.wasm
# Build Ocrs CLI for non-browser WebAssembly runtimes (eg. wasmtime). Run using:
#
# wasmtime --dir . target/wasm32-wasi/release/ocrs.wasm --detect-model text-detection.rten --rec-model text-recognition.rten ocrs-cli/test-data/why-rust.png
.PHONY: wasm-wasi
wasm-wasi:
RUSTFLAGS="-C target-feature=+simd128" cargo build --release --target wasm32-wasi --package ocrs-cli
.PHONY: wasm-all
wasm-all: wasm wasm-nosimd