Files
Steckbrett/Makefile
Phani Pavan K 1aea9c4930
All checks were successful
/ Quality Check (push) Successful in 1m30s
/ Build (push) Successful in 2m7s
added makefile, funcs for install files to root
2025-11-04 22:12:02 +05:30

18 lines
196 B
Makefile

.PHONY: clean
all:run
run: debugBuild
sudo ./target/debug/steckbrett
debugBuild:
cargo build
clean:
cargo clean
rrun: build
sudo ./target/release/steckbrett
build:
cargo build --release