Build one or more targets.
(context)
| 602 | |
| 603 | |
| 604 | def build_target(context): |
| 605 | """Build one or more targets.""" |
| 606 | steps = [] |
| 607 | if context.target in {"build", "all"}: |
| 608 | steps.extend([ |
| 609 | configure_build_python, |
| 610 | make_build_python, |
| 611 | ]) |
| 612 | if context.target in {"host", "all"}: |
| 613 | steps.extend([ |
| 614 | make_emscripten_libffi, |
| 615 | make_mpdec, |
| 616 | configure_emscripten_python, |
| 617 | make_emscripten_python, |
| 618 | ]) |
| 619 | |
| 620 | for step in steps: |
| 621 | step(context) |
| 622 | |
| 623 | |
| 624 | def clean_contents(context): |
nothing calls this directly
no test coverage detected
searching dependent graphs…