Add rustup to makefile

This commit is contained in:
xenia 2020-03-02 20:16:58 +00:00
parent 577b7b0084
commit cb08126abd
2 changed files with 8 additions and 3 deletions

3
.gitignore vendored
View File

@ -1 +1,2 @@
target
target
.rustup-installed

View File

@ -1,5 +1,6 @@
.PHONY: all clean test c t
all:
all: .rustup-installed
cargo build
clean:
@ -12,4 +13,7 @@ c: clean
t: test
.PHONY: all clean test c t
.rustup-installed:
rustup install nightly
rustup install stable
touch $@