mirror of
https://codeberg.org/Toasterson/ips.git
synced 2026-04-10 21:30:41 +00:00
Add clean target
This commit is contained in:
parent
9ea943f69e
commit
8e08c9910b
1 changed files with 6 additions and 3 deletions
9
Makefile
9
Makefile
|
|
@ -1,12 +1,15 @@
|
||||||
.PHONY: all release test
|
.PHONY: all release test clean
|
||||||
|
|
||||||
|
|
||||||
all: release
|
all: clean release
|
||||||
|
|
||||||
test:
|
test:
|
||||||
cargo test
|
cargo test
|
||||||
|
|
||||||
|
clean:
|
||||||
|
rm -rf target artifacts
|
||||||
|
|
||||||
release:
|
release:
|
||||||
cargo build --release
|
cargo build --release
|
||||||
mkdir artifacts
|
mkdir -p artifacts
|
||||||
cp target/release/pkg6dev artifacts/
|
cp target/release/pkg6dev artifacts/
|
||||||
Loading…
Add table
Reference in a new issue