|
|
|
|
|
by timz
608 days ago
|
|
Thinking about the suggestion regarding command dependencies,
possibly we could add something similar to Makefile: ## [clean]() Cleans the generated files
```bash
rm -rf ./build
```
## [init]() Initializes the build folder
```bash
mkdir -p ./build
```
## [build](clean, init) Builds the project
This command depends on clean, and init, which are executed in that order beforehand.
gcc magic.c -o ./build/magic
|
|
I like what you're exploring, but it's not "make".