Skip to content
Snippets Groups Projects
Select Git revision
  • 60f704f1258d8c225ad0a9ba3f342b553064206a
  • main default protected
  • 3.10
  • 3.11
  • revert-15688-bpo-38031-_io-FileIO-opener-crash
  • 3.8
  • 3.9
  • 3.7
  • enum-fix_auto
  • branch-v3.11.0
  • backport-c3648f4-3.11
  • gh-93963/remove-importlib-resources-abcs
  • refactor-wait_for
  • shared-testcase
  • v3.12.0a2
  • v3.12.0a1
  • v3.11.0
  • v3.8.15
  • v3.9.15
  • v3.10.8
  • v3.7.15
  • v3.11.0rc2
  • v3.8.14
  • v3.9.14
  • v3.7.14
  • v3.10.7
  • v3.11.0rc1
  • v3.10.6
  • v3.11.0b5
  • v3.11.0b4
  • v3.10.5
  • v3.11.0b3
  • v3.11.0b2
  • v3.9.13
34 results

Makefile.pre.in

Blame
  • Makefile.pre.in 71.64 KiB
    # Top-level Makefile for Python
    #
    # As distributed, this file is called Makefile.pre.in; it is processed
    # into the real Makefile by running the script ./configure, which
    # replaces things like @spam@ with values appropriate for your system.
    # This means that if you edit Makefile, your changes get lost the next
    # time you run the configure script.  Ideally, you can do:
    #
    #	./configure
    #	make
    #	make test
    #	make install
    #
    # If you have a previous version of Python installed that you don't
    # want to overwrite, you can use "make altinstall" instead of "make
    # install".  Refer to the "Installing" section in the README file for
    # additional details.
    #
    # See also the section "Build instructions" in the README file.
    
    # === Variables set by makesetup ===
    
    MODBUILT_NAMES=    _MODBUILT_NAMES_
    MODDISABLED_NAMES= _MODDISABLED_NAMES_
    MODOBJS=           _MODOBJS_
    MODLIBS=           _MODLIBS_
    
    # === Variables set by configure
    VERSION=	@VERSION@
    srcdir=		@srcdir@
    VPATH=		@srcdir@
    abs_srcdir=	@abs_srcdir@
    abs_builddir=	@abs_builddir@
    
    
    CC=		@CC@
    CXX=		@CXX@
    MAINCC=		@MAINCC@
    LINKCC=		@LINKCC@
    AR=		@AR@
    READELF=	@READELF@
    SOABI=		@SOABI@
    LDVERSION=	@LDVERSION@
    LIBPYTHON=	@LIBPYTHON@
    GITVERSION=	@GITVERSION@
    GITTAG=		@GITTAG@
    GITBRANCH=	@GITBRANCH@
    PGO_PROF_GEN_FLAG=@PGO_PROF_GEN_FLAG@
    PGO_PROF_USE_FLAG=@PGO_PROF_USE_FLAG@
    LLVM_PROF_MERGER=@LLVM_PROF_MERGER@
    LLVM_PROF_FILE=@LLVM_PROF_FILE@
    LLVM_PROF_ERR=@LLVM_PROF_ERR@
    DTRACE=         @DTRACE@
    DFLAGS=         @DFLAGS@
    DTRACE_HEADERS= @DTRACE_HEADERS@
    DTRACE_OBJS=    @DTRACE_OBJS@
    
    GNULD=		@GNULD@
    
    # Shell used by make (some versions default to the login shell, which is bad)
    SHELL=		/bin/sh
    
    # Use this to make a link between python$(VERSION) and python in $(BINDIR)
    LN=		@LN@
    
    # Portable install script (configure doesn't always guess right)
    INSTALL=	@INSTALL@
    INSTALL_PROGRAM=@INSTALL_PROGRAM@
    INSTALL_SCRIPT= @INSTALL_SCRIPT@
    INSTALL_DATA=	@INSTALL_DATA@