Notes on Development Environments
Aug-2023
Makefile
Installed in UNIX based systems as default.
- Create
Makefile
named file without an extention. - Contents yaml type syntax inside with (:) comma
- Use it as
$ make r
Example:
“`M̀akefile
r:
cargo run
“`
As long as cargo.toml file exists at the same root directory of Rust project,
$ make r
fires cargo run
command, basicly. It can grow up with complicated automations.