added makefile, funcs for install files to root
All checks were successful
/ Quality Check (push) Successful in 1m30s
/ Build (push) Successful in 2m7s

This commit is contained in:
Phani Pavan K
2025-11-04 22:12:02 +05:30
parent 7b11193b15
commit 1aea9c4930
3 changed files with 71 additions and 6 deletions

17
Makefile Normal file
View File

@@ -0,0 +1,17 @@
.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