You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
272 B
Makefile
25 lines
272 B
Makefile
1 year ago
|
.PHONY: all release debug test install
|
||
|
|
||
|
all:
|
||
|
make test
|
||
|
make release
|
||
|
|
||
|
release:
|
||
|
cargo build --release --all-features
|
||
|
|
||
|
debug:
|
||
|
cargo build --all-features
|
||
|
|
||
|
clean:
|
||
|
cargo clean
|
||
|
|
||
|
test:
|
||
|
cargo test --all-features
|
||
|
|
||
|
install_user:
|
||
|
./install.sh
|
||
|
|
||
|
install:
|
||
|
./install.sh --system
|
||
|
|