From 9ed27ce8fa0fb2b9176cf0df4cc729fc28883ed2 Mon Sep 17 00:00:00 2001 From: juliangaal Date: Mon, 15 Feb 2021 19:09:29 +0100 Subject: [PATCH] delete makefile [skip ci] --- Makefile | 29 ----------------------------- 1 file changed, 29 deletions(-) delete mode 100644 Makefile diff --git a/Makefile b/Makefile deleted file mode 100644 index 7cccbf0..0000000 --- a/Makefile +++ /dev/null @@ -1,29 +0,0 @@ -target = armv7-unknown-linux-gnueabihf -cross_comp_packages = gcc-arm-linux-gnueabihf libc6-armhf-cross libc6-dev-armhf-cross -mode = release -home = $(shell pwd) - -.DEFAULT_GOAL = build - -build: - cargo build - -test: - cargo test - -rustup_cross: - rustup target add $(target) - -install: - apt-get install $(cross_comp_packages) - -linux: - cargo build --examples --$(mode) --target=$(target) - -viz: - cd $(home)/viz/viz && cargo build --$(mode) --target=$(target) - -upload: linux - scp $(home)/target/armv7-unknown-linux-gnueabihf/release/examples/linux pi@192.168.1.136: - -.PHONY: deploy build ext viz