(context)
| 296 | |
| 297 | |
| 298 | def build_targets(context): |
| 299 | if context.target in {"all", "build"}: |
| 300 | configure_build_python(context) |
| 301 | make_build_python(context) |
| 302 | |
| 303 | for host in HOSTS: |
| 304 | if context.target in {"all", "hosts", host}: |
| 305 | configure_host_python(context, host) |
| 306 | make_host_python(context, host) |
| 307 | |
| 308 | |
| 309 | def clean(host): |
nothing calls this directly
no test coverage detected
searching dependent graphs…