From b86b9d77c1975d37b6b42e2b6682cad739e9233f Mon Sep 17 00:00:00 2001 From: juliangaal Date: Thu, 6 Jun 2019 19:29:17 +0200 Subject: [PATCH] adjust to example restructuring --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index acb475f..391f1a4 100644 --- a/Makefile +++ b/Makefile @@ -7,13 +7,13 @@ home = $(shell pwd) build: cargo build -ext: +linux: cargo build --examples --$(mode) --target=$(target) viz: cd $(home)/viz/viz && cargo build --$(mode) --target=$(target) -deploy: ext - scp $(home)/example/target/$(target)/$(mode)/example pi@192.168.1.136: +upload: linux + scp $(home)/target/armv7-unknown-linux-gnueabihf/release/examples/linux pi@192.168.1.136: .PHONY: deploy build ext viz