From bf0166f97c98a0846c354e1089ad8ac6f2761dea Mon Sep 17 00:00:00 2001 From: "Timothy J. Warren" Date: Wed, 17 Nov 2021 15:56:21 -0500 Subject: [PATCH] Add Makefile to make running on the Raspberry Pi 400 simpler --- Makefile | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 Makefile diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..4a4a024 --- /dev/null +++ b/Makefile @@ -0,0 +1,11 @@ +run-pi: + MESA_GL_VERSION_OVERRIDE=3.0 MESA_GLSL_VERSION_OVERRIDE=330 cargo run + +clean: + cargo clean + +check: + cargo check + cargo fmt + +.phony: run-pi clean check \ No newline at end of file