muele/red/justfile

19 lines
341 B
Makefile

url := "olimex@muele.local"
build:
cargo build --target=armv7-unknown-linux-gnueabihf
rrun:
#scp -r ./src {{url}}:red/
rsync -rvu --filter=':- .gitignore' ../red {{url}}:
ssh {{url}} "cd red; /home/olimex/.cargo/bin/cargo run;"
rdown:
ssh {{url}} "sudo /usr/sbin/poweroff"
mount:
sshfs {{url}}:/ mount
login:
ssh {{url}}