Meaning when I have ```makefile foo: ## Execute foo run_cmd ``` it should be compiled to ```python @task def foo(c): """Execute foo""" c.run("run_cmd") ```
Meaning when I have
it should be compiled to