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 # The task to run while instrument when building the profile-opt target
180 PROFILE_TASK= $(srcdir)/Tools/pybench/pybench.py -n 2 --with-gc --with-syscheck
181 #PROFILE_TASK= $(srcdir)/Lib/test/regrtest.py
183 # === Definitions added by makesetup ===
186 ##########################################################################
194 # Used of signalmodule.o is not available
195 SIGNAL_OBJS= @SIGNAL_OBJS@
198 ##########################################################################
200 GRAMMAR_H= $(srcdir)/Include/graminit.h
201 GRAMMAR_C= $(srcdir)/Python/graminit.c
202 GRAMMAR_INPUT= $(srcdir)/Grammar/Grammar
205 ##########################################################################
207 PGEN= Parser/pgen$(EXE)
217 Parser/metagrammar.o \
222 PARSER_OBJS= $(POBJS) Parser/myreadline.o Parser/tokenizer.o
226 Python/mysnprintf.o \
227 Parser/tokenizer_pgen.o \
228 Parser/printgrammar.o \
235 PGENOBJS= $(PGENMAIN) $(POBJS) $(PGOBJS)
237 ##########################################################################
239 AST_H_DIR= $(srcdir)/Include
240 AST_H= $(AST_H_DIR)/Python-ast.h
241 AST_C_DIR= $(srcdir)/Python
242 AST_C= $(AST_C_DIR)/Python-ast.c
243 AST_ASDL= $(srcdir)/Parser/Python.asdl
245 ASDLGEN_FILES= $(srcdir)/Parser/asdl.py $(srcdir)/Parser/asdl_c.py
246 # XXX Note that a build now requires Python exist before the build starts
247 ASDLGEN= $(srcdir)/Parser/asdl_c.py
249 ##########################################################################
253 Python/Python-ast.o \
256 Python/bltinmodule.o \
262 Python/frozenmain.o \
265 Python/getcompiler.o \
266 Python/getcopyright.o \
267 Python/getplatform.o \
268 Python/getversion.o \
273 Python/modsupport.o \
275 Python/mysnprintf.o \
282 Python/structmember.o \
289 Python/formatter_unicode.o \
290 Python/formatter_string.o \
291 Python/$(DYNLOADFILE) \
297 ##########################################################################
301 Objects/boolobject.o \
302 Objects/bufferobject.o \
303 Objects/bytes_methods.o \
304 Objects/bytearrayobject.o \
305 Objects/cellobject.o \
306 Objects/classobject.o \
308 Objects/codeobject.o \
309 Objects/complexobject.o \
310 Objects/descrobject.o \
311 Objects/enumobject.o \
312 Objects/exceptions.o \
313 Objects/genobject.o \
314 Objects/fileobject.o \
315 Objects/floatobject.o \
316 Objects/frameobject.o \
317 Objects/funcobject.o \
318 Objects/intobject.o \
319 Objects/iterobject.o \
320 Objects/listobject.o \
321 Objects/longobject.o \
322 Objects/dictobject.o \
323 Objects/methodobject.o \
324 Objects/moduleobject.o \
327 Objects/rangeobject.o \
328 Objects/setobject.o \
329 Objects/sliceobject.o \
330 Objects/stringobject.o \
331 Objects/structseq.o \
332 Objects/tupleobject.o \
333 Objects/typeobject.o \
334 Objects/weakrefobject.o \
338 ##########################################################################
339 # objects that get linked into the Python library
341 Modules/getbuildinfo.o \
349 #########################################################################
354 build_all: $(BUILDPYTHON) oldsharedmods sharedmods
356 # Compile a binary with gcc profile guided optimization.
358 @echo "Building with support for profile generation:"
360 $(MAKE) build_all_generate_profile
361 @echo "Running benchmark to generate profile data:"
362 $(MAKE) profile-removal
363 $(MAKE) run_profile_task
364 @echo "Rebuilding with profile guided optimizations:"
366 $(MAKE) build_all_use_profile
368 build_all_generate_profile:
369 $(MAKE) all CFLAGS="$(CFLAGS) -fprofile-generate" LIBS="$(LIBS) -lgcov"
372 ./$(BUILDPYTHON) $(PROFILE_TASK)
374 build_all_use_profile:
375 $(MAKE) all CFLAGS="$(CFLAGS) -fprofile-use"
378 @echo "Building with support for coverage checking:"
380 $(MAKE) all CFLAGS="$(CFLAGS) -O0 -pg -fprofile-arcs -ftest-coverage" LIBS="$(LIBS) -lgcov"
383 # Build the interpreter
384 $(BUILDPYTHON): Modules/python.o $(LIBRARY) $(LDLIBRARY)
385 $(LINKCC) $(LDFLAGS) $(LINKFORSHARED) -o $@ \
387 $(BLDLIBRARY) $(LIBS) $(MODLIBS) $(SYSLIBS) $(LDLAST)
389 platform: $(BUILDPYTHON)
390 $(RUNSHARED) ./$(BUILDPYTHON) -E -c 'import sys ; from distutils.util import get_platform ; print get_platform()+"-"+sys.version[0:3]' >platform
393 # Build the shared modules
394 sharedmods: $(BUILDPYTHON)
395 @case $$MAKEFLAGS in \
396 *s*) $(RUNSHARED) CC='$(CC)' LDSHARED='$(BLDSHARED)' OPT='$(OPT)' ./$(BUILDPYTHON) -E $(srcdir)/setup.py -q build;; \
397 *) $(RUNSHARED) CC='$(CC)' LDSHARED='$(BLDSHARED)' OPT='$(OPT)' ./$(BUILDPYTHON) -E $(srcdir)/setup.py build;; \
400 # Build static library
401 # avoid long command lines, same as LIBRARY_OBJS
402 $(LIBRARY): $(LIBRARY_OBJS)
404 $(AR) cr $@ Modules/getbuildinfo.o
405 $(AR) cr $@ $(PARSER_OBJS)
406 $(AR) cr $@ $(OBJECT_OBJS)
407 $(AR) cr $@ $(PYTHON_OBJS)
408 $(AR) cr $@ $(MODULE_OBJS) $(SIGNAL_OBJS)
409 $(AR) cr $@ $(MODOBJS)
412 libpython$(VERSION).so: $(LIBRARY_OBJS)
413 if test $(INSTSONAME) != $(LDLIBRARY); then \
414 $(LDSHARED) $(LDFLAGS) -Wl,-h$(INSTSONAME) -o $(INSTSONAME) $(LIBRARY_OBJS) $(SHLIBS) $(LIBC) $(LIBM) $(LDLAST); \
415 $(LN) -f $(INSTSONAME) $@; \
417 $(LDSHARED) $(LDFLAGS) -o $@ $(LIBRARY_OBJS) $(SHLIBS) $(LIBC) $(LIBM) $(LDLAST); \
420 libpython$(VERSION).dylib: $(LIBRARY_OBJS)
421 $(CC) -dynamiclib -Wl,-single_module $(LDFLAGS) -undefined dynamic_lookup -Wl,-install_name,$(prefix)/lib/libpython$(VERSION).dylib -Wl,-compatibility_version,$(VERSION) -Wl,-current_version,$(VERSION) -o $@ $(LIBRARY_OBJS) $(SHLIBS) $(LIBC) $(LIBM) $(LDLAST); \
424 libpython$(VERSION).sl: $(LIBRARY_OBJS)
425 $(LDSHARED) $(LDFLAGS) -o $@ $(LIBRARY_OBJS) $(SHLIBS) $(LIBC) $(LIBM) $(LDLAST)
427 # This rule is here for OPENSTEP/Rhapsody/MacOSX. It builds a temporary
428 # minimal framework (not including the Lib directory and such) in the current
430 RESSRCDIR=Mac/Resources/framework
431 $(PYTHONFRAMEWORKDIR)/Versions/$(VERSION)/$(PYTHONFRAMEWORK): \
433 $(RESSRCDIR)/Info.plist
434 $(INSTALL) -d -m $(DIRMODE) $(PYTHONFRAMEWORKDIR)/Versions/$(VERSION)
435 if test "${UNIVERSALSDK}"; then \
436 $(CC) -o $(LDLIBRARY) @UNIVERSAL_ARCH_FLAGS@ -dynamiclib \
437 -isysroot "${UNIVERSALSDK}" \
438 -all_load $(LIBRARY) -Wl,-single_module \
439 -install_name $(DESTDIR)$(PYTHONFRAMEWORKINSTALLDIR)/Versions/$(VERSION)/$(PYTHONFRAMEWORK) \
440 -compatibility_version $(VERSION) \
441 -current_version $(VERSION); \
443 /usr/bin/libtool -o $(LDLIBRARY) -dynamic $(OTHER_LIBTOOL_OPT) $(LIBRARY) \
446 $(INSTALL) -d -m $(DIRMODE) \
447 $(PYTHONFRAMEWORKDIR)/Versions/$(VERSION)/Resources/English.lproj
448 $(INSTALL_DATA) $(RESSRCDIR)/Info.plist \
449 $(PYTHONFRAMEWORKDIR)/Versions/$(VERSION)/Resources/Info.plist
450 $(LN) -fsn $(VERSION) $(PYTHONFRAMEWORKDIR)/Versions/Current
451 $(LN) -fsn Versions/Current/$(PYTHONFRAMEWORK) $(PYTHONFRAMEWORKDIR)/$(PYTHONFRAMEWORK)
452 $(LN) -fsn Versions/Current/Headers $(PYTHONFRAMEWORKDIR)/Headers
453 $(LN) -fsn Versions/Current/Resources $(PYTHONFRAMEWORKDIR)/Resources
455 # This rule builds the Cygwin Python DLL and import library if configured
456 # for a shared core library; otherwise, this rule is a noop.
457 $(DLLLIBRARY) libpython$(VERSION).dll.a: $(LIBRARY_OBJS)
458 if test -n "$(DLLLIBRARY)"; then \
459 $(LDSHARED) $(LDFLAGS) -Wl,--out-implib=$@ -o $(DLLLIBRARY) $^ \
460 $(LIBS) $(MODLIBS) $(SYSLIBS) $(LDLAST); \
465 oldsharedmods: $(SHAREDMODS)
468 Makefile Modules/config.c: Makefile.pre \
469 $(srcdir)/Modules/config.c.in \
471 Modules/Setup.config \
474 $(SHELL) $(MAKESETUP) -c $(srcdir)/Modules/config.c.in \
476 Modules/Setup.config \
477 Modules/Setup.local \
480 @echo "The Makefile was updated, you may need to re-run make."
483 Modules/Setup: $(srcdir)/Modules/Setup.dist
484 @if test -f Modules/Setup; then \
485 echo "-----------------------------------------------"; \
486 echo "Modules/Setup.dist is newer than Modules/Setup;"; \
487 echo "check to make sure you have all the updates you"; \
488 echo "need in your Modules/Setup file."; \
489 echo "Usually, copying Modules/Setup.dist to Modules/Setup will work."; \
490 echo "-----------------------------------------------"; \
493 ############################################################################
494 # Special rules for object files
496 Modules/getbuildinfo.o: $(PARSER_OBJS) \
502 $(srcdir)/Modules/getbuildinfo.c
503 $(CC) -c $(PY_CFLAGS) -DSVNVERSION=\"`LC_ALL=C $(SVNVERSION)`\" -o $@ $(srcdir)/Modules/getbuildinfo.c
505 Modules/getpath.o: $(srcdir)/Modules/getpath.c Makefile
506 $(CC) -c $(PY_CFLAGS) -DPYTHONPATH='"$(PYTHONPATH)"' \
507 -DPREFIX='"$(prefix)"' \
508 -DEXEC_PREFIX='"$(exec_prefix)"' \
509 -DVERSION='"$(VERSION)"' \
510 -DVPATH='"$(VPATH)"' \
511 -o $@ $(srcdir)/Modules/getpath.c
513 Modules/python.o: $(srcdir)/Modules/python.c
514 $(MAINCC) -c $(PY_CFLAGS) -o $@ $(srcdir)/Modules/python.c
517 $(GRAMMAR_H) $(GRAMMAR_C): $(PGEN) $(GRAMMAR_INPUT)
518 -@$(INSTALL) -d Include
519 -$(PGEN) $(GRAMMAR_INPUT) $(GRAMMAR_H) $(GRAMMAR_C)
522 $(CC) $(OPT) $(LDFLAGS) $(PGENOBJS) $(LIBS) -o $(PGEN)
524 Parser/grammar.o: $(srcdir)/Parser/grammar.c \
525 $(srcdir)/Include/token.h \
526 $(srcdir)/Include/grammar.h
527 Parser/metagrammar.o: $(srcdir)/Parser/metagrammar.c
529 Parser/tokenizer_pgen.o: $(srcdir)/Parser/tokenizer.c
531 Parser/pgenmain.o: $(srcdir)/Include/parsetok.h
533 $(AST_H): $(AST_ASDL) $(ASDLGEN_FILES)
534 $(ASDLGEN) -h $(AST_H_DIR) $(AST_ASDL)
536 $(AST_C): $(AST_ASDL) $(ASDLGEN_FILES)
537 $(ASDLGEN) -c $(AST_C_DIR) $(AST_ASDL)
539 Python/compile.o Python/symtable.o: $(GRAMMAR_H) $(AST_H)
541 Python/getplatform.o: $(srcdir)/Python/getplatform.c
542 $(CC) -c $(PY_CFLAGS) -DPLATFORM='"$(MACHDEP)"' -o $@ $(srcdir)/Python/getplatform.c
544 Python/importdl.o: $(srcdir)/Python/importdl.c
545 $(CC) -c $(PY_CFLAGS) -I$(DLINCLDIR) -o $@ $(srcdir)/Python/importdl.c
547 Objects/unicodectype.o: $(srcdir)/Objects/unicodectype.c \
548 $(srcdir)/Objects/unicodetype_db.h
551 $(srcdir)/Include/bytes_methods.h \
552 $(srcdir)/Objects/stringlib/count.h \
553 $(srcdir)/Objects/stringlib/ctype.h \
554 $(srcdir)/Objects/stringlib/fastsearch.h \
555 $(srcdir)/Objects/stringlib/find.h \
556 $(srcdir)/Objects/stringlib/formatter.h \
557 $(srcdir)/Objects/stringlib/partition.h \
558 $(srcdir)/Objects/stringlib/stringdefs.h \
559 $(srcdir)/Objects/stringlib/string_format.h \
560 $(srcdir)/Objects/stringlib/transmogrify.h \
561 $(srcdir)/Objects/stringlib/unicodedefs.h \
562 $(srcdir)/Objects/stringlib/localeutil.h
564 Objects/unicodeobject.o: $(srcdir)/Objects/unicodeobject.c \
567 Objects/bytearrayobject.o: $(srcdir)/Objects/bytearrayobject.c \
570 Objects/stringobject.o: $(srcdir)/Objects/stringobject.c \
573 Python/formatter_unicode.o: $(srcdir)/Python/formatter_unicode.c \
576 Python/formatter_string.o: $(srcdir)/Python/formatter_string.c \
579 ############################################################################
583 Include/Python-ast.h \
589 Include/boolobject.h \
590 Include/bytearrayobject.h \
591 Include/bytes_methods.h \
592 Include/bytesobject.h \
593 Include/bufferobject.h \
594 Include/cellobject.h \
596 Include/classobject.h \
601 Include/complexobject.h \
602 Include/descrobject.h \
603 Include/dictobject.h \
604 Include/enumobject.h \
607 Include/fileobject.h \
608 Include/floatobject.h \
609 Include/frameobject.h \
610 Include/funcobject.h \
611 Include/genobject.h \
613 Include/intobject.h \
614 Include/intrcheck.h \
615 Include/iterobject.h \
616 Include/listobject.h \
617 Include/longintrepr.h \
618 Include/longobject.h \
620 Include/metagrammar.h \
621 Include/methodobject.h \
622 Include/modsupport.h \
623 Include/moduleobject.h \
630 Include/patchlevel.h \
632 Include/pgenheaders.h \
644 Include/pythonrun.h \
646 Include/rangeobject.h \
647 Include/setobject.h \
648 Include/sliceobject.h \
649 Include/stringobject.h \
650 Include/structmember.h \
651 Include/structseq.h \
653 Include/sysmodule.h \
654 Include/traceback.h \
655 Include/tupleobject.h \
657 Include/unicodeobject.h \
659 Include/weakrefobject.h \
663 $(LIBRARY_OBJS) $(MODOBJS) Modules/python.o: $(PYTHON_HEADERS)
666 ######################################################################
668 # Test the interpreter (twice, once without .pyc files, once with)
669 # In the past, we've had problems where bugs in the marshalling or
670 # elsewhere caused bytecode read from .pyc files to behave differently
671 # than bytecode generated directly from a .py source file. Sometimes
672 # the bytecode read from a .pyc file had the bug, somtimes the directly
673 # generated bytecode. This is sometimes a very shy bug needing a lot of
676 TESTOPTS= -l $(EXTRATESTOPTS)
677 TESTPROG= $(srcdir)/Lib/test/regrtest.py
678 TESTPYTHON= $(RUNSHARED) ./$(BUILDPYTHON) -E -tt
680 -find $(srcdir)/Lib -name '*.py[co]' -print | xargs rm -f
681 -$(TESTPYTHON) $(TESTPROG) $(TESTOPTS)
682 $(TESTPYTHON) $(TESTPROG) $(TESTOPTS)
684 testall: all platform
685 -find $(srcdir)/Lib -name '*.py[co]' -print | xargs rm -f
686 $(TESTPYTHON) $(srcdir)/Lib/compileall.py
687 -find $(srcdir)/Lib -name '*.py[co]' -print | xargs rm -f
688 -$(TESTPYTHON) $(TESTPROG) $(TESTOPTS) -uall
689 $(TESTPYTHON) $(TESTPROG) $(TESTOPTS) -uall
691 # Run the unitests for both architectures in a Universal build on OSX
692 # Must be run on an Intel box.
693 testuniversal: all platform
694 if [ `arch` != 'i386' ];then \
695 echo "This can only be used on OSX/i386" ;\
698 -find $(srcdir)/Lib -name '*.py[co]' -print | xargs rm -f
699 -$(TESTPYTHON) $(TESTPROG) $(TESTOPTS) -uall
700 $(TESTPYTHON) $(TESTPROG) $(TESTOPTS) -uall
701 $(RUNSHARED) /usr/libexec/oah/translate ./$(BUILDPYTHON) -E -tt $(TESTPROG) $(TESTOPTS) -uall
704 # Like testall, but with a single pass only
705 # run an optional script to include some information about the build environment
706 buildbottest: all platform
707 -@if which pybuildbot.identify >/dev/null 2>&1; then \
708 pybuildbot.identify "CC='$(CC)'" "CXX='$(CXX)'"; \
710 $(TESTPYTHON) $(TESTPROG) $(TESTOPTS) -uall -rw
712 QUICKTESTOPTS= $(TESTOPTS) -x test_thread test_signal test_strftime \
713 test_unicodedata test_re test_sre test_select test_poll \
714 test_linuxaudiodev test_struct test_sunaudiodev test_zlib
715 quicktest: all platform
716 -find $(srcdir)/Lib -name '*.py[co]' -print | xargs rm -f
717 -$(TESTPYTHON) $(TESTPROG) $(QUICKTESTOPTS)
718 $(TESTPYTHON) $(TESTPROG) $(QUICKTESTOPTS)
720 MEMTESTOPTS= $(QUICKTESTOPTS) -x test_dl test___all__ test_fork1 \
722 memtest: all platform
723 -rm -f $(srcdir)/Lib/test/*.py[co]
724 -$(TESTPYTHON) $(TESTPROG) $(MEMTESTOPTS)
725 $(TESTPYTHON) $(TESTPROG) $(MEMTESTOPTS)
728 install: @FRAMEWORKINSTALLFIRST@ altinstall bininstall maninstall @FRAMEWORKINSTALLLAST@
730 # Install almost everything without disturbing previous versions
731 altinstall: @FRAMEWORKALTINSTALLFIRST@ altbininstall libinstall inclinstall libainstall \
732 sharedinstall oldsharedinstall @FRAMEWORKALTINSTALLLAST@
734 # Install shared libraries enabled by Setup
735 DESTDIRS= $(exec_prefix) $(LIBDIR) $(BINLIBDEST) $(DESTSHARED)
737 oldsharedinstall: $(DESTSHARED) $(SHAREDMODS)
738 @for i in X $(SHAREDMODS); do \
739 if test $$i != X; then \
740 echo $(INSTALL_SHARED) $$i $(DESTSHARED)/`basename $$i`; \
741 $(INSTALL_SHARED) $$i $(DESTDIR)$(DESTSHARED)/`basename $$i`; \
746 @for i in $(DESTDIRS); \
748 if test ! -d $(DESTDIR)$$i; then \
749 echo "Creating directory $$i"; \
750 $(INSTALL) -d -m $(DIRMODE) $(DESTDIR)$$i; \
756 # Install the interpreter (by creating a hard link to python$(VERSION))
757 bininstall: altbininstall
758 -if test -f $(DESTDIR)$(BINDIR)/$(PYTHON) -o -h $(DESTDIR)$(BINDIR)/$(PYTHON); \
759 then rm -f $(DESTDIR)$(BINDIR)/$(PYTHON); \
762 (cd $(DESTDIR)$(BINDIR); $(LN) python$(VERSION)$(EXE) $(PYTHON))
763 -rm -f $(DESTDIR)$(BINDIR)/python-config
764 (cd $(DESTDIR)$(BINDIR); $(LN) -s python$(VERSION)-config python-config)
766 # Install the interpreter with $(VERSION) affixed
767 # This goes into $(exec_prefix)
768 altbininstall: $(BUILDPYTHON)
769 @for i in $(BINDIR) $(LIBDIR); \
771 if test ! -d $(DESTDIR)$$i; then \
772 echo "Creating directory $$i"; \
773 $(INSTALL) -d -m $(DIRMODE) $(DESTDIR)$$i; \
777 $(INSTALL_PROGRAM) $(BUILDPYTHON) $(DESTDIR)$(BINDIR)/python$(VERSION)$(EXE)
778 if test -f $(LDLIBRARY); then \
779 if test -n "$(DLLLIBRARY)" ; then \
780 $(INSTALL_SHARED) $(DLLLIBRARY) $(DESTDIR)$(BINDIR); \
782 $(INSTALL_SHARED) $(LDLIBRARY) $(DESTDIR)$(LIBDIR)/$(INSTSONAME); \
783 if test $(LDLIBRARY) != $(INSTSONAME); then \
784 (cd $(DESTDIR)$(LIBDIR); $(LN) -sf $(INSTSONAME) $(LDLIBRARY)) \
790 # Install the manual page
792 @for i in $(MANDIR) $(MANDIR)/man1; \
794 if test ! -d $(DESTDIR)$$i; then \
795 echo "Creating directory $$i"; \
796 $(INSTALL) -d -m $(DIRMODE) $(DESTDIR)$$i; \
800 $(INSTALL_DATA) $(srcdir)/Misc/python.man \
801 $(DESTDIR)$(MANDIR)/man1/python$(VERSION).1
803 # Install the library
804 PLATDIR= plat-$(MACHDEP)
805 EXTRAPLATDIR= @EXTRAPLATDIR@
806 EXTRAMACHDEPPATH=@EXTRAMACHDEPPATH@
807 MACHDEPS= $(PLATDIR) $(EXTRAPLATDIR)
808 XMLLIBSUBDIRS= xml xml/dom xml/etree xml/parsers xml/sax
809 PLATMACDIRS= plat-mac plat-mac/Carbon plat-mac/lib-scriptpackages \
810 plat-mac/lib-scriptpackages/_builtinSuites \
811 plat-mac/lib-scriptpackages/CodeWarrior \
812 plat-mac/lib-scriptpackages/Explorer \
813 plat-mac/lib-scriptpackages/Finder \
814 plat-mac/lib-scriptpackages/Netscape \
815 plat-mac/lib-scriptpackages/StdSuites \
816 plat-mac/lib-scriptpackages/SystemEvents \
817 plat-mac/lib-scriptpackages/Terminal
818 PLATMACPATH=:plat-mac:plat-mac/lib-scriptpackages
819 LIBSUBDIRS= lib-tk site-packages test test/output test/data \
820 test/decimaltestdata \
821 encodings compiler hotshot \
822 email email/mime email/test email/test/data \
824 sqlite3 sqlite3/test \
825 logging bsddb bsddb/test csv wsgiref \
826 lib2to3 lib2to3/fixes lib2to3/pgen2 lib2to3/tests \
827 ctypes ctypes/test ctypes/macholib idlelib idlelib/Icons \
828 distutils distutils/command distutils/tests $(XMLLIBSUBDIRS) \
829 multiprocessing multiprocessing/dummy \
832 libinstall: build_all $(srcdir)/Lib/$(PLATDIR)
833 @for i in $(SCRIPTDIR) $(LIBDEST); \
835 if test ! -d $(DESTDIR)$$i; then \
836 echo "Creating directory $$i"; \
837 $(INSTALL) -d -m $(DIRMODE) $(DESTDIR)$$i; \
841 @for d in $(LIBSUBDIRS); \
843 a=$(srcdir)/Lib/$$d; \
844 if test ! -d $$a; then continue; else true; fi; \
846 if test ! -d $(DESTDIR)$$b; then \
847 echo "Creating directory $$b"; \
848 $(INSTALL) -d -m $(DIRMODE) $(DESTDIR)$$b; \
852 @for i in $(srcdir)/Lib/*.py $(srcdir)/Lib/*.doc $(srcdir)/Lib/*.egg-info ; \
854 if test -x $$i; then \
855 $(INSTALL_SCRIPT) $$i $(DESTDIR)$(LIBDEST); \
856 echo $(INSTALL_SCRIPT) $$i $(LIBDEST); \
858 $(INSTALL_DATA) $$i $(DESTDIR)$(LIBDEST); \
859 echo $(INSTALL_DATA) $$i $(LIBDEST); \
862 @for d in $(LIBSUBDIRS); \
864 a=$(srcdir)/Lib/$$d; \
865 if test ! -d $$a; then continue; else true; fi; \
866 if test `ls $$a | wc -l` -lt 1; then continue; fi; \
876 if test -d $$i; then continue; fi; \
877 if test -x $$i; then \
878 echo $(INSTALL_SCRIPT) $$i $$b; \
879 $(INSTALL_SCRIPT) $$i $(DESTDIR)$$b; \
881 echo $(INSTALL_DATA) $$i $$b; \
882 $(INSTALL_DATA) $$i $(DESTDIR)$$b; \
887 $(INSTALL_DATA) $(srcdir)/LICENSE $(DESTDIR)$(LIBDEST)/LICENSE.txt
888 PYTHONPATH=$(DESTDIR)$(LIBDEST) $(RUNSHARED) \
889 ./$(BUILDPYTHON) -Wi -tt $(DESTDIR)$(LIBDEST)/compileall.py \
891 -x 'bad_coding|badsyntax|site-packages' $(DESTDIR)$(LIBDEST)
892 PYTHONPATH=$(DESTDIR)$(LIBDEST) $(RUNSHARED) \
893 ./$(BUILDPYTHON) -Wi -tt -O $(DESTDIR)$(LIBDEST)/compileall.py \
895 -x 'bad_coding|badsyntax|site-packages' $(DESTDIR)$(LIBDEST)
896 -PYTHONPATH=$(DESTDIR)$(LIBDEST) $(RUNSHARED) \
897 ./$(BUILDPYTHON) -Wi -t $(DESTDIR)$(LIBDEST)/compileall.py \
898 -d $(LIBDEST)/site-packages -f \
899 -x badsyntax $(DESTDIR)$(LIBDEST)/site-packages
900 -PYTHONPATH=$(DESTDIR)$(LIBDEST) $(RUNSHARED) \
901 ./$(BUILDPYTHON) -Wi -t -O $(DESTDIR)$(LIBDEST)/compileall.py \
902 -d $(LIBDEST)/site-packages -f \
903 -x badsyntax $(DESTDIR)$(LIBDEST)/site-packages
904 -PYTHONPATH=$(DESTDIR)$(LIBDEST) $(RUNSHARED) \
905 ./$(BUILDPYTHON) -Wi -t -c "import lib2to3.pygram, lib2to3.patcomp;lib2to3.patcomp.PatternCompiler()"
907 # Create the PLATDIR source directory, if one wasn't distributed..
908 $(srcdir)/Lib/$(PLATDIR):
909 mkdir $(srcdir)/Lib/$(PLATDIR)
910 cp $(srcdir)/Lib/plat-generic/regen $(srcdir)/Lib/$(PLATDIR)/regen
911 export PATH; PATH="`pwd`:$$PATH"; \
912 export PYTHONPATH; PYTHONPATH="`pwd`/Lib"; \
913 export DYLD_FRAMEWORK_PATH; DYLD_FRAMEWORK_PATH="`pwd`"; \
914 export EXE; EXE="$(BUILDEXE)"; \
915 cd $(srcdir)/Lib/$(PLATDIR); $(RUNSHARED) ./regen
917 # Install the include files
918 INCLDIRSTOMAKE=$(INCLUDEDIR) $(CONFINCLUDEDIR) $(INCLUDEPY) $(CONFINCLUDEPY)
920 @for i in $(INCLDIRSTOMAKE); \
922 if test ! -d $(DESTDIR)$$i; then \
923 echo "Creating directory $$i"; \
924 $(INSTALL) -d -m $(DIRMODE) $(DESTDIR)$$i; \
928 @for i in $(srcdir)/Include/*.h; \
930 echo $(INSTALL_DATA) $$i $(INCLUDEPY); \
931 $(INSTALL_DATA) $$i $(DESTDIR)$(INCLUDEPY); \
933 $(INSTALL_DATA) pyconfig.h $(DESTDIR)$(CONFINCLUDEPY)/pyconfig.h
935 # Install the library and miscellaneous stuff needed for extending/embedding
936 # This goes into $(exec_prefix)
937 LIBPL= $(LIBP)/config
939 @for i in $(LIBDIR) $(LIBP) $(LIBPL); \
941 if test ! -d $(DESTDIR)$$i; then \
942 echo "Creating directory $$i"; \
943 $(INSTALL) -d -m $(DIRMODE) $(DESTDIR)$$i; \
947 @if test -d $(LIBRARY); then :; else \
948 if test "$(PYTHONFRAMEWORKDIR)" = no-framework; then \
949 if test "$(SO)" = .dll; then \
950 $(INSTALL_DATA) $(LDLIBRARY) $(DESTDIR)$(LIBPL) ; \
952 $(INSTALL_DATA) $(LIBRARY) $(DESTDIR)$(LIBPL)/$(LIBRARY) ; \
953 $(RANLIB) $(DESTDIR)$(LIBPL)/$(LIBRARY) ; \
956 echo Skip install of $(LIBRARY) - use make frameworkinstall; \
959 $(INSTALL_DATA) Modules/config.c $(DESTDIR)$(LIBPL)/config.c
960 $(INSTALL_DATA) Modules/python.o $(DESTDIR)$(LIBPL)/python.o
961 $(INSTALL_DATA) $(srcdir)/Modules/config.c.in $(DESTDIR)$(LIBPL)/config.c.in
962 $(INSTALL_DATA) Makefile $(DESTDIR)$(LIBPL)/Makefile
963 $(INSTALL_DATA) Modules/Setup $(DESTDIR)$(LIBPL)/Setup
964 $(INSTALL_DATA) Modules/Setup.local $(DESTDIR)$(LIBPL)/Setup.local
965 $(INSTALL_DATA) Modules/Setup.config $(DESTDIR)$(LIBPL)/Setup.config
966 $(INSTALL_SCRIPT) $(srcdir)/Modules/makesetup $(DESTDIR)$(LIBPL)/makesetup
967 $(INSTALL_SCRIPT) $(srcdir)/install-sh $(DESTDIR)$(LIBPL)/install-sh
968 # Substitution happens here, as the completely-expanded BINDIR
969 # is not available in configure
970 sed -e "s,@EXENAME@,$(BINDIR)/python$(VERSION)$(EXE)," < $(srcdir)/Misc/python-config.in >python-config
971 $(INSTALL_SCRIPT) python-config $(DESTDIR)$(BINDIR)/python$(VERSION)-config
973 @if [ -s Modules/python.exp -a \
974 "`echo $(MACHDEP) | sed 's/^\(...\).*/\1/'`" = "aix" ]; then \
975 echo; echo "Installing support files for building shared extension modules on AIX:"; \
976 $(INSTALL_DATA) Modules/python.exp \
977 $(DESTDIR)$(LIBPL)/python.exp; \
978 echo; echo "$(LIBPL)/python.exp"; \
979 $(INSTALL_SCRIPT) $(srcdir)/Modules/makexp_aix \
980 $(DESTDIR)$(LIBPL)/makexp_aix; \
981 echo "$(LIBPL)/makexp_aix"; \
982 $(INSTALL_SCRIPT) $(srcdir)/Modules/ld_so_aix \
983 $(DESTDIR)$(LIBPL)/ld_so_aix; \
984 echo "$(LIBPL)/ld_so_aix"; \
985 echo; echo "See Misc/AIX-NOTES for details."; \
988 @case "$(MACHDEP)" in beos*) \
989 echo; echo "Installing support files for building shared extension modules on BeOS:"; \
990 $(INSTALL_DATA) Misc/BeOS-NOTES $(DESTDIR)$(LIBPL)/README; \
991 echo; echo "$(LIBPL)/README"; \
992 $(INSTALL_SCRIPT) Modules/ar_beos $(DESTDIR)$(LIBPL)/ar_beos; \
993 echo "$(LIBPL)/ar_beos"; \
994 $(INSTALL_SCRIPT) Modules/ld_so_beos $(DESTDIR)$(LIBPL)/ld_so_beos; \
995 echo "$(LIBPL)/ld_so_beos"; \
996 echo; echo "See Misc/BeOS-NOTES for details."; \
1000 # Install the dynamically loadable modules
1001 # This goes into $(exec_prefix)
1003 $(RUNSHARED) ./$(BUILDPYTHON) -E $(srcdir)/setup.py install \
1004 --prefix=$(prefix) \
1005 --install-scripts=$(BINDIR) \
1006 --install-platlib=$(DESTSHARED) \
1009 # Here are a couple of targets for MacOSX again, to install a full
1010 # framework-based Python. frameworkinstall installs everything, the
1011 # subtargets install specific parts. Much of the actual work is offloaded to
1012 # the Makefile in Mac
1015 # This target is here for backward compatiblity, previous versions of Python
1016 # hadn't integrated framework installation in the normal install process.
1017 frameworkinstall: install
1019 # On install, we re-make the framework
1020 # structure in the install location, /Library/Frameworks/ or the argument to
1021 # --enable-framework. If --enable-framework has been specified then we have
1022 # automatically set prefix to the location deep down in the framework, so we
1023 # only have to cater for the structural bits of the framework.
1025 frameworkinstallframework: frameworkinstallstructure install frameworkinstallmaclib
1027 frameworkinstallstructure: $(LDLIBRARY)
1028 @if test "$(PYTHONFRAMEWORKDIR)" = no-framework; then \
1029 echo Not configured with --enable-framework; \
1033 @for i in $(prefix)/Resources/English.lproj $(prefix)/lib; do\
1034 if test ! -d $(DESTDIR)$$i; then \
1035 echo "Creating directory $(DESTDIR)$$i"; \
1036 $(INSTALL) -d -m $(DIRMODE) $(DESTDIR)$$i; \
1040 $(LN) -fsn include/python$(VERSION) $(DESTDIR)$(prefix)/Headers
1041 sed 's/%VERSION%/'"`$(RUNSHARED) ./$(BUILDPYTHON) -c 'import platform; print platform.python_version()'`"'/g' < $(RESSRCDIR)/Info.plist > $(DESTDIR)$(prefix)/Resources/Info.plist
1042 $(LN) -fsn $(VERSION) $(DESTDIR)$(PYTHONFRAMEWORKINSTALLDIR)/Versions/Current
1043 $(LN) -fsn Versions/Current/$(PYTHONFRAMEWORK) $(DESTDIR)$(PYTHONFRAMEWORKINSTALLDIR)/$(PYTHONFRAMEWORK)
1044 $(LN) -fsn Versions/Current/Headers $(DESTDIR)$(PYTHONFRAMEWORKINSTALLDIR)/Headers
1045 $(LN) -fsn Versions/Current/Resources $(DESTDIR)$(PYTHONFRAMEWORKINSTALLDIR)/Resources
1046 $(INSTALL_SHARED) $(LDLIBRARY) $(DESTDIR)$(PYTHONFRAMEWORKPREFIX)/$(LDLIBRARY)
1048 # This installs Mac/Lib into the framework
1049 # Install a number of symlinks to keep software that expects a normal unix
1050 # install (which includes python-config) happy.
1051 frameworkinstallmaclib:
1052 ln -fs "../../../$(PYTHONFRAMEWORK)" "$(DESTDIR)$(prefix)/lib/python$(VERSION)/config/libpython$(VERSION).a"
1053 cd Mac && $(MAKE) installmacsubtree DESTDIR="$(DESTDIR)"
1055 # This installs the IDE, the Launcher and other apps into /Applications
1056 frameworkinstallapps:
1057 cd Mac && $(MAKE) installapps DESTDIR="$(DESTDIR)"
1059 frameworkinstallapps4way:
1060 cd Mac && $(MAKE) installapps4way DESTDIR="$(DESTDIR)"
1062 # This install the unix python and pythonw tools in /usr/local/bin
1063 frameworkinstallunixtools:
1064 cd Mac && $(MAKE) installunixtools DESTDIR="$(DESTDIR)"
1066 frameworkinstallunixtools4way:
1067 cd Mac && $(MAKE) installunixtools4way DESTDIR="$(DESTDIR)"
1069 frameworkaltinstallunixtools:
1070 cd Mac && $(MAKE) altinstallunixtools DESTDIR="$(DESTDIR)"
1072 frameworkaltinstallunixtools4way:
1073 cd Mac && $(MAKE) altinstallunixtools4way DESTDIR="$(DESTDIR)"
1075 # This installs the Demos and Tools into the applications directory.
1076 # It is not part of a normal frameworkinstall
1077 frameworkinstallextras:
1078 cd Mac && $(MAKE) installextras DESTDIR="$(DESTDIR)"
1080 # This installs a few of the useful scripts in Tools/scripts
1082 SRCDIR=$(srcdir) $(RUNSHARED) \
1083 ./$(BUILDPYTHON) $(srcdir)/Tools/scripts/setup.py install \
1084 --prefix=$(prefix) \
1085 --install-scripts=$(BINDIR) \
1088 # Build the toplevel Makefile
1089 Makefile.pre: Makefile.pre.in config.status
1090 CONFIG_FILES=Makefile.pre CONFIG_HEADERS= $(SHELL) config.status
1091 $(MAKE) -f Makefile.pre Makefile
1093 # Run the configure script.
1094 config.status: $(srcdir)/configure
1095 $(SHELL) $(srcdir)/configure $(CONFIG_ARGS)
1097 .PRECIOUS: config.status $(BUILDPYTHON) Makefile Makefile.pre
1099 # Some make's put the object file in the current directory
1101 $(CC) -c $(PY_CFLAGS) -o $@ $<
1103 # Run reindent on the library
1105 ./$(BUILDPYTHON) $(srcdir)/Tools/scripts/reindent.py -r $(srcdir)/Lib
1107 # Rerun configure with the same options as it was run last time,
1108 # provided the config.status script exists
1110 $(SHELL) config.status --recheck
1111 $(SHELL) config.status
1113 # Rebuild the configure script from configure.in; also rebuild pyconfig.h.in
1115 (cd $(srcdir); autoconf)
1116 (cd $(srcdir); autoheader)
1118 # Create a tags file for vi
1121 ctags -w -t Include/*.h; \
1122 for i in $(SRCDIRS); do ctags -w -t -a $$i/*.[ch]; \
1126 # Create a tags file for GNU Emacs
1129 etags Include/*.h; \
1130 for i in $(SRCDIRS); do etags -a $$i/*.[ch]; done
1132 # Sanitation targets -- clean leaves libraries, executables and tags
1133 # files, which clobber removes those as well
1135 find $(srcdir) -name '*.py[co]' -exec rm -f {} ';'
1138 find . -name '*.o' -exec rm -f {} ';'
1139 find . -name '*.s[ol]' -exec rm -f {} ';'
1140 find $(srcdir)/build -name 'fficonfig.h' -exec rm -f {} ';' || true
1141 find $(srcdir)/build -name 'fficonfig.py' -exec rm -f {} ';' || true
1144 find . -name '*.gc??' -exec rm -f {} ';'
1146 clobber: clean profile-removal
1147 -rm -f $(BUILDPYTHON) $(PGEN) $(LIBRARY) $(LDLIBRARY) $(DLLLIBRARY) \
1149 config.cache config.log pyconfig.h Modules/config.c
1150 -rm -rf build platform
1151 -rm -rf $(PYTHONFRAMEWORKDIR)
1153 # Make things extra clean, before making a distribution:
1154 # remove all generated files, even Makefile[.pre]
1155 # Keep configure and Python-ast.[ch], it's possible they can't be generated
1157 -rm -f core Makefile Makefile.pre config.status \
1158 Modules/Setup Modules/Setup.local Modules/Setup.config
1159 find $(srcdir) '(' -name '*.fdc' -o -name '*~' \
1160 -o -name '[@,#]*' -o -name '*.old' \
1161 -o -name '*.orig' -o -name '*.rej' \
1162 -o -name '*.bak' ')' \
1165 # Check for smelly exported symbols (not starting with Py/_Py)
1167 nm -p $(LIBRARY) | \
1168 sed -n "/ [TDB] /s/.* //p" | grep -v "^_*Py" | sort -u; \
1170 # Find files with funny names
1172 find $(DISTDIRS) -type d \
1173 -o -name '*.[chs]' \
1183 -o -name '*,[vpt]' \
1185 -o -name 'Setup.*' \
1188 -o -name ChangeLog \
1189 -o -name Repository \
1195 -o -name .cvsignore \
1199 # Perform some verification checks on any modified files.
1201 $(RUNSHARED) ./$(BUILDPYTHON) $(srcdir)/Tools/scripts/patchcheck.py
1205 Python/thread.o: @THREADHEADERS@
1207 # Declare targets that aren't real files
1208 .PHONY: all build_all sharedmods oldsharedmods test quicktest memtest
1209 .PHONY: install altinstall oldsharedinstall bininstall altbininstall
1210 .PHONY: maninstall libinstall inclinstall libainstall sharedinstall
1211 .PHONY: frameworkinstall frameworkinstallframework frameworkinstallstructure
1212 .PHONY: frameworkinstallmaclib frameworkinstallapps frameworkinstallunixtools
1213 .PHONY: frameworkaltinstallunixtools recheck autoconf clean clobber distclean
1214 .PHONY: smelly funny patchcheck
1216 # IF YOU PUT ANYTHING HERE IT WILL GO AWAY