Lines Matching defs:configure
50 CONFIGURE = SRCDIR / "configure"
134 def read_python_version(configure: pathlib.Path = CONFIGURE) -> str:
135 """Read PACKAGE_VERSION from configure script
137 configure and configure.ac are the canonical source for major and
141 with configure.open(encoding="utf-8") as f:
146 raise ValueError(f"PACKAGE_VERSION not found in {configure}")
174 - configure wrapper (e.g. emconfigure)
461 """Generate configure command"""
464 configure = os.path.relpath(CONFIGURE, self.builddir)
465 cmd = [configure, "-C"]
550 """Run configure (if necessary) and make"""
552 logger.info("Makefile not found, running configure")
557 """Run configure script to generate Makefile"""
780 help="Run configure and make in silent mode",
804 build="auto build (build 'build' Python, emports, configure, compile)",
805 configure="run ./configure",
838 # additional configure and make args
878 elif op == "configure":