1
0
mirror of https://github.com/containers/youki synced 2024-09-20 10:54:22 +02:00
youki/crates/Makefile
Eric Fang 8a8b8e34a0 [Trivial] Fix makefile targets to use PHONY
Signed-off-by: Eric Fang <yihuaf@unkies.org>
2023-03-29 18:22:01 +02:00

12 lines
201 B
Makefile

.PHONY: debug
debug:
cargo build && cp ./target/debug/youki ./youki_bin
.PHONY: release
release:
cargo build --release && cp ./target/release/youki ./youki_bin
.PHONY: clean
clean:
rm ./youki_bin