Kenneth Reitz
Kenneth Reitz
```make hello: hello/reuse hello/reuse/concurrent echo "You just ran $(red 'hello') directly, then indirectly (via bake+bash; 6 times, concurrently!)" hello/basic: sleep 2 echo "[$(red $(uuidgen))] hello!" hello/reuse: bake hello/basic hello/reuse/concurrent: bake...
This works because `bake` automatically sets the `BAKE_SILENT` environment variable for the tasks that run underneath it, which is like passing the `bake --silent` flag.
use bash syntax! ```makefile CC='g++' test: ${CC} foo.cc ```
Leaving this open for others.
might need to be exported. will experiment.
things are in a state of flux :)
This currently works! ```Makefile test: ${CC} foo.cc CC='g++' ``` Not when it's above the tasks. Should be easy to correct (need some regex or something!).
Now, the following works: ```Makefile CC='g++' test: ${CC} foo.cc ``` :sparkles: :cake: :sparkles:
`--dont-skip`
this library is no longer maintained