mirror of
https://github.com/LegitCamper/picocalc-os-rs.git
synced 2025-12-27 15:55:25 +00:00
9 lines
271 B
Makefile
9 lines
271 B
Makefile
binary-args := "RUSTFLAGS=\"-C link-arg=-pie -C relocation-model=pic\""
|
|
|
|
kernel:
|
|
cargo run --bin kernel
|
|
calculator:
|
|
{{binary-args}} cargo build --bin calculator --profile release-binary
|
|
snake:
|
|
{{binary-args}} cargo build --bin snake --profile release-binary
|