1
0
Fork 0

Add Makefile to make running on the Raspberry Pi 400 simpler

This commit is contained in:
Timothy Warren 2021-11-17 15:56:21 -05:00
parent a973e6a444
commit bf0166f97c
1 changed files with 11 additions and 0 deletions

11
Makefile Normal file
View File

@ -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