1 # Top-level Makefile for Python
3 # As distributed, this file is called Makefile.pre.in; it is processed
4 # into the real Makefile by running the script ./configure, which
5 # replaces things like @spam@ with values appropriate for your system.
6 # This means that if you edit Makefile, your changes get lost the next
7 # time you run the configure script. Ideally, you can do:
14 # If you have a previous version of Python installed that you don't
15 # want to overwrite, you can use "make altinstall" instead of "make
16 # install". Refer to the "Installing" section in the README file for
19 # See also the section "Build instructions" in the README file.
21 # === Variables set by makesetup ===
26 # === Variables set by configure
37 SVNVERSION= @SVNVERSION@
39 # Shell used by make (some versions default to the login shell, which is bad)
42 # Use this to make a link between python$(VERSION) and python in $(BINDIR)
45 # Portable install script (configure doesn't always guess right)
47 INSTALL_PROGRAM=@INSTALL_PROGRAM@
48 INSTALL_SCRIPT= @INSTALL_SCRIPT@
49 INSTALL_DATA= @INSTALL_DATA@
50 # Shared libraries must be installed with executable mode on some systems;
51 # rather than figuring out exactly which, we always give them executable mode.
52 # Also, making them read-only seems to be a good idea...
53 INSTALL_SHARED= ${INSTALL} -m 555
55 MAKESETUP= $(srcdir)/Modules/makesetup
59 BASECFLAGS= @BASECFLAGS@
60 CFLAGS= $(BASECFLAGS) $(OPT) $(EXTRA_CFLAGS)
61 # Both CPPFLAGS and LDFLAGS need to contain the shell's value for setup.py to
62 # be able to build extension modules using the directories specified in the
63 # environment variables
64 CPPFLAGS= -I. -IInclude -I$(srcdir)/Include @CPPFLAGS@
69 LINKFORSHARED= @LINKFORSHARED@
70 # Extra C flags added for building the interpreter object files.
71 CFLAGSFORSHARED=@CFLAGSFORSHARED@
72 # C flags used for building the interpreter object files
73 PY_CFLAGS= $(CFLAGS) $(CPPFLAGS) $(CFLAGSFORSHARED) -DPy_BUILD_CORE
76 # Machine-dependent subdirectories
79 # Install prefix for architecture-independent files
82 # Install prefix for architecture-dependent files
83 exec_prefix= @exec_prefix@
85 # Install prefix for data files
86 datarootdir= @datarootdir@
88 # Expanded directories
89 BINDIR= $(exec_prefix)/bin
90 LIBDIR= $(exec_prefix)/lib
92 INCLUDEDIR= @includedir@
93 CONFINCLUDEDIR= $(exec_prefix)/include
94 SCRIPTDIR= $(prefix)/lib
96 # Detailed destination directories
97 BINLIBDEST= $(LIBDIR)/python$(VERSION)
98 LIBDEST= $(SCRIPTDIR)/python$(VERSION)
99 INCLUDEPY= $(INCLUDEDIR)/python$(VERSION)
100 CONFINCLUDEPY= $(CONFINCLUDEDIR)/python$(VERSION)
101 LIBP= $(LIBDIR)/python$(VERSION)
103 # Symbols used for using shared libraries
106 BLDSHARED= @BLDSHARED@
107 DESTSHARED= $(BINLIBDEST)/lib-dynload
109 # Executable suffix (.exe on Windows and Mac OS X)
111 BUILDEXE= @BUILDEXEEXT@
113 # Short name and location for Mac OS X Python framework
114 UNIVERSALSDK=@UNIVERSALSDK@
115 PYTHONFRAMEWORK= @PYTHONFRAMEWORK@
116 PYTHONFRAMEWORKDIR= @PYTHONFRAMEWORKDIR@
117 PYTHONFRAMEWORKPREFIX= @PYTHONFRAMEWORKPREFIX@
118 PYTHONFRAMEWORKINSTALLDIR= @PYTHONFRAMEWORKINSTALLDIR@
119 # Deployment target selected during configure, to be checked
120 # by distutils. The export statement is needed to ensure that the
121 # deployment target is active during build.
122 MACOSX_DEPLOYMENT_TARGET=@CONFIGURE_MACOSX_DEPLOYMENT_TARGET@
123 @EXPORT_MACOSX_DEPLOYMENT_TARGET@export MACOSX_DEPLOYMENT_TARGET
125 # Options to enable prebinding (for fast startup prior to Mac OS X 10.3)
126 OTHER_LIBTOOL_OPT=@OTHER_LIBTOOL_OPT@
128 # Environment to run shared python without installed libraries
129 RUNSHARED= @RUNSHARED@
131 # Modes for directories, executables and data files created by the
132 # install process. Default to user-only-writable for all file types.
137 # configure script arguments
138 CONFIG_ARGS= @CONFIG_ARGS@
141 # Subdirectories with code
144 # Other subdirectories
145 SUBDIRSTOO= Include Lib Misc Demo
147 # Files and directories to be distributed
148 CONFIGFILES= configure configure.in acconfig.h pyconfig.h.in Makefile.pre.in
149 DISTFILES= README ChangeLog $(CONFIGFILES)
150 DISTDIRS= $(SUBDIRS) $(SUBDIRSTOO) Ext-dummy
151 DIST= $(DISTFILES) $(DISTDIRS)
155 LDLIBRARY= @LDLIBRARY@
156 BLDLIBRARY= @BLDLIBRARY@
157 DLLLIBRARY= @DLLLIBRARY@
158 LDLIBRARYDIR= @LDLIBRARYDIR@
159 INSTSONAME= @INSTSONAME@
165 SYSLIBS= $(LIBM) $(LIBC)
168 THREADOBJ= @THREADOBJ@
169 DLINCLDIR= @DLINCLDIR@
170 DYNLOADFILE= @DYNLOADFILE@
171 MACHDEP_OBJS= @MACHDEP_OBJS@
174 UNICODE_OBJS= @UNICODE_OBJS@
177 BUILDPYTHON= python$(BUILDEXE)
179 # === Definitions added by makesetup ===
182 ##########################################################################
190 # Used of signalmodule.o is not available
191 SIGNAL_OBJS= @SIGNAL_OBJS@
194 ##########################################################################
196 GRAMMAR_H= $(srcdir)/Include/graminit.h
197 GRAMMAR_C= $(srcdir)/Python/graminit.c
198 GRAMMAR_INPUT= $(srcdir)/Grammar/Grammar
201 ##########################################################################
203 PGEN= Parser/pgen$(EXE)
213 Parser/metagrammar.o \
218 PARSER_OBJS= $(POBJS) Parser/myreadline.o Parser/tokenizer.o
222 Python/mysnprintf.o \
223 Parser/tokenizer_pgen.o \
224 Parser/printgrammar.o \
231 PGENOBJS= $(PGENMAIN) $(POBJS) $(PGOBJS)
233 ##########################################################################
235 AST_H_DIR= $(srcdir)/Include
236 AST_H= $(AST_H_DIR)/Python-ast.h
237 AST_C_DIR= $(srcdir)/Python
238 AST_C= $(AST_C_DIR)/Python-ast.c
239 AST_ASDL= $(srcdir)/Parser/Python.asdl
241 ASDLGEN_FILES= $(srcdir)/Parser/asdl.py $(srcdir)/Parser/asdl_c.py
242 # XXX Note that a build now requires Python exist before the build starts
243 ASDLGEN= $(srcdir)/Parser/asdl_c.py
245 ##########################################################################
248 Python/Python-ast.o \
251 Python/bltinmodule.o \
257 Python/frozenmain.o \
260 Python/getcompiler.o \
261 Python/getcopyright.o \
263 Python/getplatform.o \
264 Python/getversion.o \
269 Python/modsupport.o \
271 Python/mysnprintf.o \
277 Python/structmember.o \
284 Python/formatter_unicode.o \
285 Python/formatter_string.o \
286 Python/$(DYNLOADFILE) \
292 ##########################################################################
296 Objects/boolobject.o \
297 Objects/bufferobject.o \
298 Objects/cellobject.o \
299 Objects/classobject.o \
301 Objects/codeobject.o \
302 Objects/complexobject.o \
303 Objects/descrobject.o \
304 Objects/enumobject.o \
305 Objects/exceptions.o \
306 Objects/genobject.o \
307 Objects/fileobject.o \
308 Objects/floatobject.o \
309 Objects/frameobject.o \
310 Objects/funcobject.o \
311 Objects/intobject.o \
312 Objects/iterobject.o \
313 Objects/listobject.o \
314 Objects/longobject.o \
315 Objects/dictobject.o \
316 Objects/methodobject.o \
317 Objects/moduleobject.o \
320 Objects/rangeobject.o \
321 Objects/setobject.o \
322 Objects/sliceobject.o \
323 Objects/stringobject.o \
324 Objects/structseq.o \
325 Objects/tupleobject.o \
326 Objects/typeobject.o \
327 Objects/weakrefobject.o \
331 ##########################################################################
332 # objects that get linked into the Python library
334 Modules/_typesmodule.o \
335 Modules/getbuildinfo.o \
343 #########################################################################
348 build_all: $(BUILDPYTHON) oldsharedmods sharedmods
350 # Build the interpreter
351 $(BUILDPYTHON): Modules/python.o $(LIBRARY) $(LDLIBRARY)
352 $(LINKCC) $(LDFLAGS) $(LINKFORSHARED) -o $@ \
354 $(BLDLIBRARY) $(LIBS) $(MODLIBS) $(SYSLIBS) $(LDLAST)
356 platform: $(BUILDPYTHON)
357 $(RUNSHARED) ./$(BUILDPYTHON) -E -c 'import sys ; from distutils.util import get_platform ; print get_platform()+"-"+sys.version[0:3]' >platform
360 # Build the shared modules
361 sharedmods: $(BUILDPYTHON)
362 @case $$MAKEFLAGS in \
363 *s*) $(RUNSHARED) CC='$(CC)' LDSHARED='$(BLDSHARED)' OPT='$(OPT)' ./$(BUILDPYTHON) -E $(srcdir)/setup.py -q build;; \
364 *) $(RUNSHARED) CC='$(CC)' LDSHARED='$(BLDSHARED)' OPT='$(OPT)' ./$(BUILDPYTHON) -E $(srcdir)/setup.py build;; \
367 # Build static library
368 # avoid long command lines, same as LIBRARY_OBJS
369 $(LIBRARY): $(LIBRARY_OBJS)
371 $(AR) cr $@ Modules/getbuildinfo.o
372 $(AR) cr $@ Modules/_typesmodule.o
373 $(AR) cr $@ $(PARSER_OBJS)
374 $(AR) cr $@ $(OBJECT_OBJS)
375 $(AR) cr $@ $(PYTHON_OBJS)
376 $(AR) cr $@ $(MODULE_OBJS) $(SIGNAL_OBJS)
377 $(AR) cr $@ $(MODOBJS)
380 libpython$(VERSION).so: $(LIBRARY_OBJS)
381 if test $(INSTSONAME) != $(LDLIBRARY); then \
382 $(LDSHARED) -Wl,-h$(INSTSONAME) -o $(INSTSONAME) $(LIBRARY_OBJS) $(SHLIBS) $(LIBC) $(LIBM); \
383 $(LN) -f $(INSTSONAME) $@; \
385 $(LDSHARED) -o $@ $(LIBRARY_OBJS) $(SHLIBS) $(LIBC) $(LIBM); \
388 libpython$(VERSION).sl: $(LIBRARY_OBJS)
389 $(LDSHARED) -o $@ $(LIBRARY_OBJS) $(SHLIBS) $(LIBC) $(LIBM)
391 # This rule is here for OPENSTEP/Rhapsody/MacOSX. It builds a temporary
392 # minimal framework (not including the Lib directory and such) in the current
394 RESSRCDIR=$(srcdir)/Mac/Resources/framework
395 $(PYTHONFRAMEWORKDIR)/Versions/$(VERSION)/$(PYTHONFRAMEWORK): \
397 $(RESSRCDIR)/Info.plist \
398 $(RESSRCDIR)/version.plist \
399 $(RESSRCDIR)/English.lproj/InfoPlist.strings
400 $(INSTALL) -d -m $(DIRMODE) $(PYTHONFRAMEWORKDIR)/Versions/$(VERSION)
401 if test "${UNIVERSALSDK}"; then \
402 $(CC) -o $(LDLIBRARY) -arch i386 -arch ppc -dynamiclib \
403 -isysroot "${UNIVERSALSDK}" \
404 -all_load $(LIBRARY) -Wl,-single_module \
405 -install_name $(DESTDIR)$(PYTHONFRAMEWORKINSTALLDIR)/Versions/$(VERSION)/Python \
406 -compatibility_version $(VERSION) \
407 -current_version $(VERSION); \
409 /usr/bin/libtool -o $(LDLIBRARY) -dynamic $(OTHER_LIBTOOL_OPT) $(LIBRARY) \
412 $(INSTALL) -d -m $(DIRMODE) \
413 $(PYTHONFRAMEWORKDIR)/Versions/$(VERSION)/Resources/English.lproj
414 $(INSTALL_DATA) $(RESSRCDIR)/Info.plist \
415 $(PYTHONFRAMEWORKDIR)/Versions/$(VERSION)/Resources/Info.plist
416 $(INSTALL_DATA) $(RESSRCDIR)/version.plist \
417 $(PYTHONFRAMEWORKDIR)/Versions/$(VERSION)/Resources/version.plist
418 $(INSTALL_DATA) $(RESSRCDIR)/English.lproj/InfoPlist.strings \
419 $(PYTHONFRAMEWORKDIR)/Versions/$(VERSION)/Resources/English.lproj/InfoPlist.strings
420 $(LN) -fsn $(VERSION) $(PYTHONFRAMEWORKDIR)/Versions/Current
421 $(LN) -fsn Versions/Current/$(PYTHONFRAMEWORK) $(PYTHONFRAMEWORKDIR)/$(PYTHONFRAMEWORK)
422 $(LN) -fsn Versions/Current/Headers $(PYTHONFRAMEWORKDIR)/Headers
423 $(LN) -fsn Versions/Current/Resources $(PYTHONFRAMEWORKDIR)/Resources
425 # This rule builds the Cygwin Python DLL and import library if configured
426 # for a shared core library; otherwise, this rule is a noop.
427 $(DLLLIBRARY) libpython$(VERSION).dll.a: $(LIBRARY_OBJS)
428 if test -n "$(DLLLIBRARY)"; then \
429 $(LDSHARED) -Wl,--out-implib=$@ -o $(DLLLIBRARY) $^ \
430 $(LIBS) $(MODLIBS) $(SYSLIBS); \
435 oldsharedmods: $(SHAREDMODS)
438 Makefile Modules/config.c: Makefile.pre \
439 $(srcdir)/Modules/config.c.in \
441 Modules/Setup.config \
444 $(SHELL) $(MAKESETUP) -c $(srcdir)/Modules/config.c.in \
446 Modules/Setup.config \
447 Modules/Setup.local \
450 @echo "The Makefile was updated, you may need to re-run make."
453 Modules/Setup: $(srcdir)/Modules/Setup.dist
454 @if test -f Modules/Setup; then \
455 echo "-----------------------------------------------"; \
456 echo "Modules/Setup.dist is newer than Modules/Setup;"; \
457 echo "check to make sure you have all the updates you"; \
458 echo "need in your Modules/Setup file."; \
459 echo "Usually, copying Setup.dist to Setup will work."; \
460 echo "-----------------------------------------------"; \
463 ############################################################################
464 # Special rules for object files
466 Modules/getbuildinfo.o: $(PARSER_OBJS) \
472 $(srcdir)/Modules/getbuildinfo.c
473 $(CC) -c $(PY_CFLAGS) -DSVNVERSION=\"`LC_ALL=C $(SVNVERSION)`\" -o $@ $(srcdir)/Modules/getbuildinfo.c
475 Modules/getpath.o: $(srcdir)/Modules/getpath.c Makefile
476 $(CC) -c $(PY_CFLAGS) -DPYTHONPATH='"$(PYTHONPATH)"' \
477 -DPREFIX='"$(prefix)"' \
478 -DEXEC_PREFIX='"$(exec_prefix)"' \
479 -DVERSION='"$(VERSION)"' \
480 -DVPATH='"$(VPATH)"' \
481 -o $@ $(srcdir)/Modules/getpath.c
483 Modules/python.o: $(srcdir)/Modules/python.c
484 $(MAINCC) -c $(PY_CFLAGS) -o $@ $(srcdir)/Modules/python.c
487 $(GRAMMAR_H) $(GRAMMAR_C): $(PGEN) $(GRAMMAR_INPUT)
488 -@$(INSTALL) -d Include
489 -$(PGEN) $(GRAMMAR_INPUT) $(GRAMMAR_H) $(GRAMMAR_C)
492 $(CC) $(OPT) $(LDFLAGS) $(PGENOBJS) $(LIBS) -o $(PGEN)
494 Parser/grammar.o: $(srcdir)/Parser/grammar.c \
495 $(srcdir)/Include/token.h \
496 $(srcdir)/Include/grammar.h
497 Parser/metagrammar.o: $(srcdir)/Parser/metagrammar.c
499 Parser/tokenizer_pgen.o: $(srcdir)/Parser/tokenizer.c
501 Parser/pgenmain.o: $(srcdir)/Include/parsetok.h
503 $(AST_H): $(AST_ASDL) $(ASDLGEN_FILES)
504 $(ASDLGEN) -h $(AST_H_DIR) $(AST_ASDL)
506 $(AST_C): $(AST_ASDL) $(ASDLGEN_FILES)
507 $(ASDLGEN) -c $(AST_C_DIR) $(AST_ASDL)
509 Python/compile.o Python/symtable.o: $(GRAMMAR_H) $(AST_H)
511 Python/getplatform.o: $(srcdir)/Python/getplatform.c
512 $(CC) -c $(PY_CFLAGS) -DPLATFORM='"$(MACHDEP)"' -o $@ $(srcdir)/Python/getplatform.c
514 Python/importdl.o: $(srcdir)/Python/importdl.c
515 $(CC) -c $(PY_CFLAGS) -I$(DLINCLDIR) -o $@ $(srcdir)/Python/importdl.c
517 Objects/unicodectype.o: $(srcdir)/Objects/unicodectype.c \
518 $(srcdir)/Objects/unicodetype_db.h
521 $(srcdir)/Objects/stringlib/count.h \
522 $(srcdir)/Objects/stringlib/fastsearch.h \
523 $(srcdir)/Objects/stringlib/find.h \
524 $(srcdir)/Objects/stringlib/formatter.h \
525 $(srcdir)/Objects/stringlib/partition.h \
526 $(srcdir)/Objects/stringlib/stringdefs.h \
527 $(srcdir)/Objects/stringlib/string_format.h \
528 $(srcdir)/Objects/stringlib/unicodedefs.h
530 Objects/unicodeobject.o: $(srcdir)/Objects/unicodeobject.c \
533 Objects/stringobject.o: $(srcdir)/Objects/stringobject.c \
536 Python/formatter_unicode.o: $(srcdir)/Python/formatter_unicode.c \
539 Python/formatter_string.o: $(srcdir)/Python/formatter_string.c \
542 ############################################################################
546 Include/Python-ast.h \
552 Include/boolobject.h \
553 Include/bufferobject.h \
554 Include/cellobject.h \
556 Include/classobject.h \
561 Include/complexobject.h \
562 Include/descrobject.h \
563 Include/dictobject.h \
564 Include/enumobject.h \
567 Include/fileobject.h \
568 Include/floatobject.h \
569 Include/frameobject.h \
570 Include/funcobject.h \
571 Include/genobject.h \
573 Include/intobject.h \
574 Include/intrcheck.h \
575 Include/iterobject.h \
576 Include/listobject.h \
577 Include/longintrepr.h \
578 Include/longobject.h \
580 Include/metagrammar.h \
581 Include/methodobject.h \
582 Include/modsupport.h \
583 Include/moduleobject.h \
590 Include/patchlevel.h \
592 Include/pgenheaders.h \
603 Include/pythonrun.h \
605 Include/rangeobject.h \
606 Include/setobject.h \
607 Include/sliceobject.h \
608 Include/stringobject.h \
609 Include/structmember.h \
610 Include/structseq.h \
612 Include/sysmodule.h \
613 Include/traceback.h \
614 Include/tupleobject.h \
616 Include/unicodeobject.h \
617 Include/weakrefobject.h \
621 $(LIBRARY_OBJS) $(MODOBJS) Modules/python.o: $(PYTHON_HEADERS)
624 ######################################################################
626 # Test the interpreter (twice, once without .pyc files, once with)
627 # In the past, we've had problems where bugs in the marshalling or
628 # elsewhere caused bytecode read from .pyc files to behave differently
629 # than bytecode generated directly from a .py source file. Sometimes
630 # the bytecode read from a .pyc file had the bug, somtimes the directly
631 # generated bytecode. This is sometimes a very shy bug needing a lot of
634 TESTOPTS= -l $(EXTRATESTOPTS)
635 TESTPROG= $(srcdir)/Lib/test/regrtest.py
636 TESTPYTHON= $(RUNSHARED) ./$(BUILDPYTHON) -E -tt
638 -find $(srcdir)/Lib -name '*.py[co]' -print | xargs rm -f
639 -$(TESTPYTHON) $(TESTPROG) $(TESTOPTS)
640 $(TESTPYTHON) $(TESTPROG) $(TESTOPTS)
642 testall: all platform
643 -find $(srcdir)/Lib -name '*.py[co]' -print | xargs rm -f
644 $(TESTPYTHON) $(srcdir)/Lib/compileall.py
645 -find $(srcdir)/Lib -name '*.py[co]' -print | xargs rm -f
646 -$(TESTPYTHON) $(TESTPROG) $(TESTOPTS) -uall
647 $(TESTPYTHON) $(TESTPROG) $(TESTOPTS) -uall
649 # Run the unitests for both architectures in a Universal build on OSX
650 # Must be run on an Intel box.
651 testuniversal: all platform
652 if [ `arch` != 'i386' ];then \
653 echo "This can only be used on OSX/i386" ;\
656 -find $(srcdir)/Lib -name '*.py[co]' -print | xargs rm -f
657 -$(TESTPYTHON) $(TESTPROG) $(TESTOPTS) -uall
658 $(TESTPYTHON) $(TESTPROG) $(TESTOPTS) -uall
659 $(RUNSHARED) /usr/libexec/oah/translate ./$(BUILDPYTHON) -E -tt $(TESTPROG) $(TESTOPTS) -uall
662 # Like testall, but with a single pass only
663 # run an optional script to include some information about the build environment
664 buildbottest: all platform
665 -@if which pybuildbot.identify >/dev/null 2>&1; then \
666 pybuildbot.identify "CC='$(CC)'" "CXX='$(CXX)'"; \
668 $(TESTPYTHON) $(TESTPROG) $(TESTOPTS) -uall -rw
670 QUICKTESTOPTS= $(TESTOPTS) -x test_thread test_signal test_strftime \
671 test_unicodedata test_re test_sre test_select test_poll \
672 test_linuxaudiodev test_struct test_sunaudiodev test_zlib
673 quicktest: all platform
674 -find $(srcdir)/Lib -name '*.py[co]' -print | xargs rm -f
675 -$(TESTPYTHON) $(TESTPROG) $(QUICKTESTOPTS)
676 $(TESTPYTHON) $(TESTPROG) $(QUICKTESTOPTS)
678 MEMTESTOPTS= $(QUICKTESTOPTS) -x test_dl test___all__ test_fork1 \
680 memtest: all platform
681 -rm -f $(srcdir)/Lib/test/*.py[co]
682 -$(TESTPYTHON) $(TESTPROG) $(MEMTESTOPTS)
683 $(TESTPYTHON) $(TESTPROG) $(MEMTESTOPTS)
686 install: @FRAMEWORKINSTALLFIRST@ altinstall bininstall maninstall @FRAMEWORKINSTALLLAST@
688 # Install almost everything without disturbing previous versions
689 altinstall: @FRAMEWORKALTINSTALLFIRST@ altbininstall libinstall inclinstall libainstall \
690 sharedinstall oldsharedinstall @FRAMEWORKALTINSTALLLAST@
692 # Install shared libraries enabled by Setup
693 DESTDIRS= $(exec_prefix) $(LIBDIR) $(BINLIBDEST) $(DESTSHARED)
695 oldsharedinstall: $(DESTSHARED) $(SHAREDMODS)
696 @for i in X $(SHAREDMODS); do \
697 if test $$i != X; then \
698 echo $(INSTALL_SHARED) $$i $(DESTSHARED)/`basename $$i`; \
699 $(INSTALL_SHARED) $$i $(DESTDIR)$(DESTSHARED)/`basename $$i`; \
704 @for i in $(DESTDIRS); \
706 if test ! -d $(DESTDIR)$$i; then \
707 echo "Creating directory $$i"; \
708 $(INSTALL) -d -m $(DIRMODE) $(DESTDIR)$$i; \
714 # Install the interpreter (by creating a hard link to python$(VERSION))
715 bininstall: altbininstall
716 -if test -f $(DESTDIR)$(BINDIR)/$(PYTHON) -o -h $(DESTDIR)$(BINDIR)/$(PYTHON); \
717 then rm -f $(DESTDIR)$(BINDIR)/$(PYTHON); \
720 (cd $(DESTDIR)$(BINDIR); $(LN) python$(VERSION)$(EXE) $(PYTHON))
721 -rm -f $(DESTDIR)$(BINDIR)/python-config
722 (cd $(DESTDIR)$(BINDIR); $(LN) -s python$(VERSION)-config python-config)
724 # Install the interpreter with $(VERSION) affixed
725 # This goes into $(exec_prefix)
726 altbininstall: $(BUILDPYTHON)
727 @for i in $(BINDIR) $(LIBDIR); \
729 if test ! -d $(DESTDIR)$$i; then \
730 echo "Creating directory $$i"; \
731 $(INSTALL) -d -m $(DIRMODE) $(DESTDIR)$$i; \
735 $(INSTALL_PROGRAM) $(BUILDPYTHON) $(DESTDIR)$(BINDIR)/python$(VERSION)$(EXE)
736 if test -f libpython$(VERSION)$(SO); then \
737 if test "$(SO)" = .dll; then \
738 $(INSTALL_SHARED) libpython$(VERSION)$(SO) $(DESTDIR)$(BINDIR); \
740 $(INSTALL_SHARED) libpython$(VERSION)$(SO) $(DESTDIR)$(LIBDIR)/$(INSTSONAME); \
741 if test libpython$(VERSION)$(SO) != $(INSTSONAME); then \
742 (cd $(DESTDIR)$(LIBDIR); $(LN) -sf $(INSTSONAME) libpython$(VERSION)$(SO)); \
748 # Install the manual page
750 @for i in $(MANDIR) $(MANDIR)/man1; \
752 if test ! -d $(DESTDIR)$$i; then \
753 echo "Creating directory $$i"; \
754 $(INSTALL) -d -m $(DIRMODE) $(DESTDIR)$$i; \
758 $(INSTALL_DATA) $(srcdir)/Misc/python.man \
759 $(DESTDIR)$(MANDIR)/man1/python.1
761 # Install the library
762 PLATDIR= plat-$(MACHDEP)
763 EXTRAPLATDIR= @EXTRAPLATDIR@
764 EXTRAMACHDEPPATH=@EXTRAMACHDEPPATH@
765 MACHDEPS= $(PLATDIR) $(EXTRAPLATDIR)
766 XMLLIBSUBDIRS= xml xml/dom xml/etree xml/parsers xml/sax
767 PLATMACDIRS= plat-mac plat-mac/Carbon plat-mac/lib-scriptpackages \
768 plat-mac/lib-scriptpackages/_builtinSuites \
769 plat-mac/lib-scriptpackages/CodeWarrior \
770 plat-mac/lib-scriptpackages/Explorer \
771 plat-mac/lib-scriptpackages/Finder \
772 plat-mac/lib-scriptpackages/Netscape \
773 plat-mac/lib-scriptpackages/StdSuites \
774 plat-mac/lib-scriptpackages/SystemEvents \
775 plat-mac/lib-scriptpackages/Terminal
776 PLATMACPATH=:plat-mac:plat-mac/lib-scriptpackages
777 LIBSUBDIRS= lib-tk site-packages test test/output test/data \
778 test/decimaltestdata \
779 encodings compiler hotshot \
780 email email/mime email/test email/test/data \
781 sqlite3 sqlite3/test \
782 logging bsddb bsddb/test csv wsgiref \
783 ctypes ctypes/test ctypes/macholib idlelib idlelib/Icons \
784 distutils distutils/command distutils/tests $(XMLLIBSUBDIRS) \
785 setuptools setuptools/command setuptools/tests setuptools.egg-info \
787 libinstall: build_all $(srcdir)/Lib/$(PLATDIR)
788 @for i in $(SCRIPTDIR) $(LIBDEST); \
790 if test ! -d $(DESTDIR)$$i; then \
791 echo "Creating directory $$i"; \
792 $(INSTALL) -d -m $(DIRMODE) $(DESTDIR)$$i; \
796 @for d in $(LIBSUBDIRS); \
798 a=$(srcdir)/Lib/$$d; \
799 if test ! -d $$a; then continue; else true; fi; \
801 if test ! -d $(DESTDIR)$$b; then \
802 echo "Creating directory $$b"; \
803 $(INSTALL) -d -m $(DIRMODE) $(DESTDIR)$$b; \
807 @for i in $(srcdir)/Lib/*.py $(srcdir)/Lib/*.doc $(srcdir)/Lib/*.egg-info ; \
809 if test -x $$i; then \
810 $(INSTALL_SCRIPT) $$i $(DESTDIR)$(LIBDEST); \
811 echo $(INSTALL_SCRIPT) $$i $(LIBDEST); \
813 $(INSTALL_DATA) $$i $(DESTDIR)$(LIBDEST); \
814 echo $(INSTALL_DATA) $$i $(LIBDEST); \
817 @for d in $(LIBSUBDIRS); \
819 a=$(srcdir)/Lib/$$d; \
820 if test ! -d $$a; then continue; else true; fi; \
821 if test `ls $$a | wc -l` -lt 1; then continue; fi; \
831 if test -d $$i; then continue; fi; \
832 if test -x $$i; then \
833 echo $(INSTALL_SCRIPT) $$i $$b; \
834 $(INSTALL_SCRIPT) $$i $(DESTDIR)$$b; \
836 echo $(INSTALL_DATA) $$i $$b; \
837 $(INSTALL_DATA) $$i $(DESTDIR)$$b; \
842 $(INSTALL_DATA) $(srcdir)/LICENSE $(DESTDIR)$(LIBDEST)/LICENSE.txt
843 PYTHONPATH=$(DESTDIR)$(LIBDEST) $(RUNSHARED) \
844 ./$(BUILDPYTHON) -Wi -tt $(DESTDIR)$(LIBDEST)/compileall.py \
846 -x 'bad_coding|badsyntax|site-packages' $(DESTDIR)$(LIBDEST)
847 PYTHONPATH=$(DESTDIR)$(LIBDEST) $(RUNSHARED) \
848 ./$(BUILDPYTHON) -Wi -tt -O $(DESTDIR)$(LIBDEST)/compileall.py \
850 -x 'bad_coding|badsyntax|site-packages' $(DESTDIR)$(LIBDEST)
851 -PYTHONPATH=$(DESTDIR)$(LIBDEST) $(RUNSHARED) \
852 ./$(BUILDPYTHON) -Wi -t $(DESTDIR)$(LIBDEST)/compileall.py \
853 -d $(LIBDEST)/site-packages -f \
854 -x badsyntax $(DESTDIR)$(LIBDEST)/site-packages
855 -PYTHONPATH=$(DESTDIR)$(LIBDEST) $(RUNSHARED) \
856 ./$(BUILDPYTHON) -Wi -t -O $(DESTDIR)$(LIBDEST)/compileall.py \
857 -d $(LIBDEST)/site-packages -f \
858 -x badsyntax $(DESTDIR)$(LIBDEST)/site-packages
860 # Create the PLATDIR source directory, if one wasn't distributed..
861 $(srcdir)/Lib/$(PLATDIR):
862 mkdir $(srcdir)/Lib/$(PLATDIR)
863 cp $(srcdir)/Lib/plat-generic/regen $(srcdir)/Lib/$(PLATDIR)/regen
864 export PATH; PATH="`pwd`:$$PATH"; \
865 export PYTHONPATH; PYTHONPATH="`pwd`/Lib"; \
866 export DYLD_FRAMEWORK_PATH; DYLD_FRAMEWORK_PATH="`pwd`"; \
867 export EXE; EXE="$(BUILDEXE)"; \
868 cd $(srcdir)/Lib/$(PLATDIR); ./regen
870 # Install the include files
871 INCLDIRSTOMAKE=$(INCLUDEDIR) $(CONFINCLUDEDIR) $(INCLUDEPY) $(CONFINCLUDEPY)
873 @for i in $(INCLDIRSTOMAKE); \
875 if test ! -d $(DESTDIR)$$i; then \
876 echo "Creating directory $$i"; \
877 $(INSTALL) -d -m $(DIRMODE) $(DESTDIR)$$i; \
881 @for i in $(srcdir)/Include/*.h; \
883 echo $(INSTALL_DATA) $$i $(INCLUDEPY); \
884 $(INSTALL_DATA) $$i $(DESTDIR)$(INCLUDEPY); \
886 $(INSTALL_DATA) pyconfig.h $(DESTDIR)$(CONFINCLUDEPY)/pyconfig.h
888 # Install the library and miscellaneous stuff needed for extending/embedding
889 # This goes into $(exec_prefix)
890 LIBPL= $(LIBP)/config
892 @for i in $(LIBDIR) $(LIBP) $(LIBPL); \
894 if test ! -d $(DESTDIR)$$i; then \
895 echo "Creating directory $$i"; \
896 $(INSTALL) -d -m $(DIRMODE) $(DESTDIR)$$i; \
900 @if test -d $(LIBRARY); then :; else \
901 if test "$(PYTHONFRAMEWORKDIR)" = no-framework; then \
902 if test "$(SO)" = .dll; then \
903 $(INSTALL_DATA) $(LDLIBRARY) $(DESTDIR)$(LIBPL) ; \
905 $(INSTALL_DATA) $(LIBRARY) $(DESTDIR)$(LIBPL)/$(LIBRARY) ; \
906 $(RANLIB) $(DESTDIR)$(LIBPL)/$(LIBRARY) ; \
909 echo Skip install of $(LIBRARY) - use make frameworkinstall; \
912 $(INSTALL_DATA) Modules/config.c $(DESTDIR)$(LIBPL)/config.c
913 $(INSTALL_DATA) Modules/python.o $(DESTDIR)$(LIBPL)/python.o
914 $(INSTALL_DATA) $(srcdir)/Modules/config.c.in $(DESTDIR)$(LIBPL)/config.c.in
915 $(INSTALL_DATA) Makefile $(DESTDIR)$(LIBPL)/Makefile
916 $(INSTALL_DATA) Modules/Setup $(DESTDIR)$(LIBPL)/Setup
917 $(INSTALL_DATA) Modules/Setup.local $(DESTDIR)$(LIBPL)/Setup.local
918 $(INSTALL_DATA) Modules/Setup.config $(DESTDIR)$(LIBPL)/Setup.config
919 $(INSTALL_SCRIPT) $(srcdir)/Modules/makesetup $(DESTDIR)$(LIBPL)/makesetup
920 $(INSTALL_SCRIPT) $(srcdir)/install-sh $(DESTDIR)$(LIBPL)/install-sh
921 # Substitution happens here, as the completely-expanded BINDIR
922 # is not available in configure
923 sed -e "s,@EXENAME@,$(BINDIR)/python$(VERSION)$(EXE)," < $(srcdir)/Misc/python-config.in >python-config
924 $(INSTALL_SCRIPT) python-config $(DESTDIR)$(BINDIR)/python$(VERSION)-config
926 @if [ -s Modules/python.exp -a \
927 "`echo $(MACHDEP) | sed 's/^\(...\).*/\1/'`" = "aix" ]; then \
928 echo; echo "Installing support files for building shared extension modules on AIX:"; \
929 $(INSTALL_DATA) Modules/python.exp \
930 $(DESTDIR)$(LIBPL)/python.exp; \
931 echo; echo "$(LIBPL)/python.exp"; \
932 $(INSTALL_SCRIPT) $(srcdir)/Modules/makexp_aix \
933 $(DESTDIR)$(LIBPL)/makexp_aix; \
934 echo "$(LIBPL)/makexp_aix"; \
935 $(INSTALL_SCRIPT) $(srcdir)/Modules/ld_so_aix \
936 $(DESTDIR)$(LIBPL)/ld_so_aix; \
937 echo "$(LIBPL)/ld_so_aix"; \
938 echo; echo "See Misc/AIX-NOTES for details."; \
941 @case "$(MACHDEP)" in beos*) \
942 echo; echo "Installing support files for building shared extension modules on BeOS:"; \
943 $(INSTALL_DATA) Misc/BeOS-NOTES $(DESTDIR)$(LIBPL)/README; \
944 echo; echo "$(LIBPL)/README"; \
945 $(INSTALL_SCRIPT) Modules/ar_beos $(DESTDIR)$(LIBPL)/ar_beos; \
946 echo "$(LIBPL)/ar_beos"; \
947 $(INSTALL_SCRIPT) Modules/ld_so_beos $(DESTDIR)$(LIBPL)/ld_so_beos; \
948 echo "$(LIBPL)/ld_so_beos"; \
949 echo; echo "See Misc/BeOS-NOTES for details."; \
953 # Install the dynamically loadable modules
954 # This goes into $(exec_prefix)
956 $(RUNSHARED) ./$(BUILDPYTHON) -E $(srcdir)/setup.py install \
958 --install-scripts=$(BINDIR) \
959 --install-platlib=$(DESTSHARED) \
962 # Here are a couple of targets for MacOSX again, to install a full
963 # framework-based Python. frameworkinstall installs everything, the
964 # subtargets install specific parts. Much of the actual work is offloaded to
965 # the Makefile in Mac
968 # This target is here for backward compatiblity, previous versions of Python
969 # hadn't integrated framework installation in the normal install process.
970 frameworkinstall: install
972 # On install, we re-make the framework
973 # structure in the install location, /Library/Frameworks/ or the argument to
974 # --enable-framework. If --enable-framework has been specified then we have
975 # automatically set prefix to the location deep down in the framework, so we
976 # only have to cater for the structural bits of the framework.
978 frameworkinstallframework: frameworkinstallstructure install frameworkinstallmaclib
980 frameworkinstallstructure: $(LDLIBRARY)
981 @if test "$(PYTHONFRAMEWORKDIR)" = no-framework; then \
982 echo Not configured with --enable-framework; \
986 @for i in $(prefix)/Resources/English.lproj $(prefix)/lib; do\
987 if test ! -d $(DESTDIR)$$i; then \
988 echo "Creating directory $(DESTDIR)$$i"; \
989 $(INSTALL) -d -m $(DIRMODE) $(DESTDIR)$$i; \
993 $(LN) -fsn include/python$(VERSION) $(DESTDIR)$(prefix)/Headers
994 $(INSTALL_DATA) $(RESSRCDIR)/Info.plist $(DESTDIR)$(prefix)/Resources/Info.plist
995 $(INSTALL_DATA) $(RESSRCDIR)/version.plist $(DESTDIR)$(prefix)/Resources/version.plist
996 $(INSTALL_DATA) $(RESSRCDIR)/English.lproj/InfoPlist.strings \
997 $(DESTDIR)$(prefix)/Resources/English.lproj/InfoPlist.strings
998 $(LN) -fsn $(VERSION) $(DESTDIR)$(PYTHONFRAMEWORKINSTALLDIR)/Versions/Current
999 $(LN) -fsn Versions/Current/Python $(DESTDIR)$(PYTHONFRAMEWORKINSTALLDIR)/Python
1000 $(LN) -fsn Versions/Current/Headers $(DESTDIR)$(PYTHONFRAMEWORKINSTALLDIR)/Headers
1001 $(LN) -fsn Versions/Current/Resources $(DESTDIR)$(PYTHONFRAMEWORKINSTALLDIR)/Resources
1002 $(INSTALL_SHARED) $(LDLIBRARY) $(DESTDIR)$(PYTHONFRAMEWORKPREFIX)/$(LDLIBRARY)
1004 # This installs Mac/Lib into the framework
1005 # Install a number of symlinks to keep software that expects a normal unix
1006 # install (which includes python-config) happy.
1007 frameworkinstallmaclib:
1008 ln -fs "../../../Python" "$(DESTDIR)$(prefix)/lib/python$(VERSION)/config/libpython$(VERSION).a"
1009 cd Mac && $(MAKE) installmacsubtree DESTDIR="$(DESTDIR)"
1011 # This installs the IDE, the Launcher and other apps into /Applications
1012 frameworkinstallapps:
1013 cd Mac && $(MAKE) installapps DESTDIR="$(DESTDIR)"
1015 # This install the unix python and pythonw tools in /usr/local/bin
1016 frameworkinstallunixtools:
1017 cd Mac && $(MAKE) installunixtools DESTDIR="$(DESTDIR)"
1019 frameworkaltinstallunixtools:
1020 cd Mac && $(MAKE) altinstallunixtools DESTDIR="$(DESTDIR)"
1022 # This installs the Demos and Tools into the applications directory.
1023 # It is not part of a normal frameworkinstall
1024 frameworkinstallextras:
1025 cd Mac && Make installextras DESTDIR="$(DESTDIR)"
1027 # This installs a few of the useful scripts in Tools/scripts
1029 SRCDIR=$(srcdir) $(RUNSHARED) \
1030 ./$(BUILDPYTHON) $(srcdir)/Tools/scripts/setup.py install \
1031 --prefix=$(prefix) \
1032 --install-scripts=$(BINDIR) \
1035 # Build the toplevel Makefile
1036 Makefile.pre: Makefile.pre.in config.status
1037 CONFIG_FILES=Makefile.pre CONFIG_HEADERS= $(SHELL) config.status
1038 $(MAKE) -f Makefile.pre Makefile
1040 # Run the configure script.
1041 config.status: $(srcdir)/configure
1042 $(SHELL) $(srcdir)/configure $(CONFIG_ARGS)
1044 .PRECIOUS: config.status $(BUILDPYTHON) Makefile Makefile.pre
1046 # Some make's put the object file in the current directory
1048 $(CC) -c $(PY_CFLAGS) -o $@ $<
1050 # Run reindent on the library
1052 ./$(BUILDPYTHON) $(srcdir)/Tools/scripts/reindent.py -r $(srcdir)/Lib
1054 # Rerun configure with the same options as it was run last time,
1055 # provided the config.status script exists
1057 $(SHELL) config.status --recheck
1058 $(SHELL) config.status
1060 # Rebuild the configure script from configure.in; also rebuild pyconfig.h.in
1062 (cd $(srcdir); autoconf)
1063 (cd $(srcdir); autoheader)
1065 # Create a tags file for vi
1068 ctags -w -t Include/*.h; \
1069 for i in $(SRCDIRS); do ctags -w -t -a $$i/*.[ch]; \
1073 # Create a tags file for GNU Emacs
1076 etags Include/*.h; \
1077 for i in $(SRCDIRS); do etags -a $$i/*.[ch]; done
1079 # Sanitation targets -- clean leaves libraries, executables and tags
1080 # files, which clobber removes those as well
1082 find $(srcdir) -name '*.py[co]' -exec rm -f {} ';'
1085 find . -name '*.o' -exec rm -f {} ';'
1086 find . -name '*.s[ol]' -exec rm -f {} ';'
1087 find $(srcdir)/build -name 'fficonfig.h' -exec rm -f {} ';' || true
1088 find $(srcdir)/build -name 'fficonfig.py' -exec rm -f {} ';' || true
1091 -rm -f $(BUILDPYTHON) $(PGEN) $(LIBRARY) $(LDLIBRARY) $(DLLLIBRARY) \
1093 config.cache config.log pyconfig.h Modules/config.c
1094 -rm -rf build platform
1095 -rm -rf $(PYTHONFRAMEWORKDIR)
1097 # Make things extra clean, before making a distribution:
1098 # remove all generated files, even Makefile[.pre]
1099 # Keep configure and Python-ast.[ch], it's possible they can't be generated
1101 -rm -f core Makefile Makefile.pre config.status \
1102 Modules/Setup Modules/Setup.local Modules/Setup.config
1103 find $(srcdir) '(' -name '*.fdc' -o -name '*~' \
1104 -o -name '[@,#]*' -o -name '*.old' \
1105 -o -name '*.orig' -o -name '*.rej' \
1106 -o -name '*.bak' ')' \
1109 # Check for smelly exported symbols (not starting with Py/_Py)
1111 nm -p $(LIBRARY) | \
1112 sed -n "/ [TDB] /s/.* //p" | grep -v "^_*Py" | sort -u; \
1114 # Find files with funny names
1116 find $(DISTDIRS) -type d \
1117 -o -name '*.[chs]' \
1127 -o -name '*,[vpt]' \
1129 -o -name 'Setup.*' \
1132 -o -name ChangeLog \
1133 -o -name Repository \
1139 -o -name .cvsignore \
1145 Python/thread.o: @THREADHEADERS@
1147 # Declare targets that aren't real files
1148 .PHONY: all build_all sharedmods oldsharedmods test quicktest memtest
1149 .PHONY: install altinstall oldsharedinstall bininstall altbininstall
1150 .PHONY: maninstall libinstall inclinstall libainstall sharedinstall
1151 .PHONY: frameworkinstall frameworkinstallframework frameworkinstallstructure
1152 .PHONY: frameworkinstallmaclib frameworkinstallapps frameworkinstallunixtools
1153 .PHONY: frameworkaltinstallunixtools recheck autoconf clean clobber distclean
1154 .PHONY: smelly funny
1156 # IF YOU PUT ANYTHING HERE IT WILL GO AWAY