19 lines
409 B
Makefile
19 lines
409 B
Makefile
url := "olimex@muele.local"
|
|
|
|
build:
|
|
cross build --target=armv7-unknown-linux-gnueabihf
|
|
|
|
run:
|
|
ssh {{url}} "killall red-cross" || echo "Failed to kill process. Maybe it's not running"
|
|
scp -r ./target/armv7-unknown-linux-gnueabihf/debug/red {{url}}:red-cross
|
|
ssh {{url}} "RUST_BACKTRACE=1 ./red-cross"
|
|
|
|
rdown:
|
|
ssh {{url}} "sudo /usr/sbin/poweroff"
|
|
|
|
mount:
|
|
sshfs {{url}}:/ mount
|
|
|
|
login:
|
|
ssh {{url}}
|