-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
34 lines (33 loc) · 687 Bytes
/
Copy pathMakefile
File metadata and controls
34 lines (33 loc) · 687 Bytes
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
bin: newfs_hammer2 mount_hammer2 fsck_hammer2 hammer2
newfs_hammer2:
cargo build --release --bin newfs_hammer2
mount_hammer2:
cargo build --release --bin mount_hammer2
fsck_hammer2:
cargo build --release --bin fsck_hammer2
hammer2:
cargo build --release --bin hammer2
clean:
cargo clean --release -p hammer2-utils
clean_all:
cargo clean
fmt:
cargo fmt
git status
lint:
cargo clippy --release --fix --all
git status
plint:
cargo clippy --release --fix --all -- -W clippy::pedantic
git status
test:
cargo test --release
test_debug:
cargo test --release -- --nocapture
install:
cargo install --path .
uninstall:
cargo uninstall
doc:
cargo doc --no-deps
xxx: fmt lint test