```Makefile foo: echo foo bar: echo bar ``` Run `bake foo` with above Bakefile: ``` + Executing foo: | foo | bar | foo + Done. ```