You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
286 B
9 lines
286 B
7 years ago
|
ucore:
|
||
7 years ago
|
rustup override set nightly-2018-04-01
|
||
7 years ago
|
RUST_TARGET_PATH=$(shell pwd) xargo build --target ucore --release
|
||
7 years ago
|
|
||
|
install-rust:
|
||
|
which cargo || ( curl https://sh.rustup.rs -sSf | sh )
|
||
|
which xargo || ( rustup component add rust-src && cargo install xargo )
|
||
|
|
||
|
.PHONY: ucore install-rust
|