1
0
mirror of https://github.com/containers/youki synced 2024-09-20 19:02:41 +02:00
youki/crates/Makefile
2022-02-06 16:10:54 +05:30

12 lines
240 B
Makefile

.PHONY : debug release
TGT = x86_64-unknown-linux-gnu
debug:
cargo build $(TGT) && cp ./target/$(TGT)/debug/youki ./youki_bin
release:
cargo build --release $(TGT) && cp ./target/$(TGT)/release/youki ./youki_bin
clean:
rm ./youki_bin