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. -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 # Expanded directories
86 BINDIR= $(exec_prefix)/bin
87 LIBDIR= $(exec_prefix)/lib
89 INCLUDEDIR= @includedir@
90 CONFINCLUDEDIR= $(exec_prefix)/include
91 SCRIPTDIR= $(prefix)/lib
93 # Detailed destination directories
94 BINLIBDEST= $(LIBDIR)/python$(VERSION)
95 LIBDEST= $(SCRIPTDIR)/python$(VERSION)
96 INCLUDEPY= $(INCLUDEDIR)/python$(VERSION)
97 CONFINCLUDEPY= $(CONFINCLUDEDIR)/python$(VERSION)
98 LIBP= $(LIBDIR)/python$(VERSION)
100 # Symbols used for using shared libraries
103 BLDSHARED= @BLDSHARED@
104 DESTSHARED= $(BINLIBDEST)/lib-dynload
106 # Executable suffix (.exe on Windows and Mac OS X)
108 BUILDEXE= @BUILDEXEEXT@
110 # Short name and location for Mac OS X Python framework
111 UNIVERSALSDK=@UNIVERSALSDK@
112 PYTHONFRAMEWORK= @PYTHONFRAMEWORK@
113 PYTHONFRAMEWORKDIR= @PYTHONFRAMEWORKDIR@
114 PYTHONFRAMEWORKPREFIX= @PYTHONFRAMEWORKPREFIX@
115 PYTHONFRAMEWORKINSTALLDIR= @PYTHONFRAMEWORKINSTALLDIR@
116 # Deployment target selected during configure, to be checked
117 # by distutils. The export statement is needed to ensure that the
118 # deployment target is active during build.
119 MACOSX_DEPLOYMENT_TARGET=@CONFIGURE_MACOSX_DEPLOYMENT_TARGET@
120 @EXPORT_MACOSX_DEPLOYMENT_TARGET@export MACOSX_DEPLOYMENT_TARGET
122 # Options to enable prebinding (for fast startup prior to Mac OS X 10.3)
123 OTHER_LIBTOOL_OPT=@OTHER_LIBTOOL_OPT@
125 # Environment to run shared python without installed libraries
126 RUNSHARED= @RUNSHARED@
128 # Modes for directories, executables and data files created by the
129 # install process. Default to user-only-writable for all file types.
134 # configure script arguments
135 CONFIG_ARGS= @CONFIG_ARGS@
138 # Subdirectories with code
141 # Other subdirectories
142 SUBDIRSTOO= Include Lib Misc Demo
144 # Files and directories to be distributed
145 CONFIGFILES= configure configure.in acconfig.h pyconfig.h.in Makefile.pre.in
146 DISTFILES= README ChangeLog $(CONFIGFILES)
147 DISTDIRS= $(SUBDIRS) $(SUBDIRSTOO) Ext-dummy
148 DIST= $(DISTFILES) $(DISTDIRS)
152 LDLIBRARY= @LDLIBRARY@
153 BLDLIBRARY= @BLDLIBRARY@
154 DLLLIBRARY= @DLLLIBRARY@
155 LDLIBRARYDIR= @LDLIBRARYDIR@
156 INSTSONAME= @INSTSONAME@
162 SYSLIBS= $(LIBM) $(LIBC)
165 THREADOBJ= @THREADOBJ@
166 DLINCLDIR= @DLINCLDIR@
167 DYNLOADFILE= @DYNLOADFILE@
168 MACHDEP_OBJS= @MACHDEP_OBJS@
169 UNICODE_OBJS= @UNICODE_OBJS@
172 BUILDPYTHON= python$(BUILDEXE)
174 # === Definitions added by makesetup ===
177 ##########################################################################
185 # Used of signalmodule.o is not available
186 SIGNAL_OBJS= @SIGNAL_OBJS@
189 ##########################################################################
191 GRAMMAR_H= $(srcdir)/Include/graminit.h
192 GRAMMAR_C= $(srcdir)/Python/graminit.c
193 GRAMMAR_INPUT= $(srcdir)/Grammar/Grammar
196 ##########################################################################
198 PGEN= Parser/pgen$(EXE)
208 Parser/metagrammar.o \
213 PARSER_OBJS= $(POBJS) Parser/myreadline.o Parser/tokenizer.o
217 Python/mysnprintf.o \
218 Parser/tokenizer_pgen.o \
219 Parser/printgrammar.o \
222 PGENOBJS= $(PGENMAIN) $(POBJS) $(PGOBJS)
224 ##########################################################################
226 AST_H_DIR= $(srcdir)/Include
227 AST_H= $(AST_H_DIR)/Python-ast.h
228 AST_C_DIR= $(srcdir)/Python
229 AST_C= $(AST_C_DIR)/Python-ast.c
230 AST_ASDL= $(srcdir)/Parser/Python.asdl
232 ASDLGEN_FILES= $(srcdir)/Parser/asdl.py $(srcdir)/Parser/asdl_c.py
233 # XXX Note that a build now requires Python exist before the build starts
234 ASDLGEN= $(srcdir)/Parser/asdl_c.py
236 ##########################################################################
239 Python/Python-ast.o \
242 Python/bltinmodule.o \
248 Python/frozenmain.o \
251 Python/getcompiler.o \
252 Python/getcopyright.o \
254 Python/getplatform.o \
255 Python/getversion.o \
260 Python/modsupport.o \
262 Python/mysnprintf.o \
267 Python/structmember.o \
273 Python/$(DYNLOADFILE) \
278 ##########################################################################
282 Objects/boolobject.o \
283 Objects/bufferobject.o \
284 Objects/cellobject.o \
285 Objects/classobject.o \
287 Objects/codeobject.o \
288 Objects/complexobject.o \
289 Objects/descrobject.o \
290 Objects/enumobject.o \
291 Objects/exceptions.o \
292 Objects/genobject.o \
293 Objects/fileobject.o \
294 Objects/floatobject.o \
295 Objects/frameobject.o \
296 Objects/funcobject.o \
297 Objects/intobject.o \
298 Objects/iterobject.o \
299 Objects/listobject.o \
300 Objects/longobject.o \
301 Objects/dictobject.o \
302 Objects/methodobject.o \
303 Objects/moduleobject.o \
306 Objects/rangeobject.o \
307 Objects/setobject.o \
308 Objects/sliceobject.o \
309 Objects/stringobject.o \
310 Objects/structseq.o \
311 Objects/tupleobject.o \
312 Objects/typeobject.o \
313 Objects/weakrefobject.o \
317 ##########################################################################
318 # objects that get linked into the Python library
320 Modules/getbuildinfo.o \
328 #########################################################################
332 all: $(BUILDPYTHON) oldsharedmods sharedmods
334 # Build the interpreter
335 $(BUILDPYTHON): Modules/python.o $(LIBRARY) $(LDLIBRARY)
336 $(LINKCC) $(LDFLAGS) $(LINKFORSHARED) -o $@ \
338 $(BLDLIBRARY) $(LIBS) $(MODLIBS) $(SYSLIBS) $(LDLAST)
340 platform: $(BUILDPYTHON)
341 $(RUNSHARED) ./$(BUILDPYTHON) -E -c 'import sys ; from distutils.util import get_platform ; print get_platform()+"-"+sys.version[0:3]' >platform
344 # Build the shared modules
345 sharedmods: $(BUILDPYTHON)
346 case $$MAKEFLAGS in \
347 *-s*) $(RUNSHARED) CC='$(CC)' LDSHARED='$(BLDSHARED)' OPT='$(OPT)' ./$(BUILDPYTHON) -E $(srcdir)/setup.py -q build;; \
348 *) $(RUNSHARED) CC='$(CC)' LDSHARED='$(BLDSHARED)' OPT='$(OPT)' ./$(BUILDPYTHON) -E $(srcdir)/setup.py build;; \
351 # Build static library
352 # avoid long command lines, same as LIBRARY_OBJS
353 $(LIBRARY): $(LIBRARY_OBJS)
355 $(AR) cr $@ Modules/getbuildinfo.o
356 $(AR) cr $@ $(PARSER_OBJS)
357 $(AR) cr $@ $(OBJECT_OBJS)
358 $(AR) cr $@ $(PYTHON_OBJS)
359 $(AR) cr $@ $(MODULE_OBJS) $(SIGNAL_OBJS)
360 $(AR) cr $@ $(MODOBJS)
363 libpython$(VERSION).so: $(LIBRARY_OBJS)
364 if test $(INSTSONAME) != $(LDLIBRARY); then \
365 $(LDSHARED) -Wl,-h$(INSTSONAME) -o $(INSTSONAME) $(LIBRARY_OBJS) $(SHLIBS) $(LIBC) $(LIBM); \
366 $(LN) -f $(INSTSONAME) $@; \
368 $(LDSHARED) -o $@ $(LIBRARY_OBJS) $(SHLIBS) $(LIBC) $(LIBM); \
371 libpython$(VERSION).sl: $(LIBRARY_OBJS)
372 $(LDSHARED) -o $@ $(LIBRARY_OBJS) $(LIBC) $(LIBM)
374 # This rule is here for OPENSTEP/Rhapsody/MacOSX. It builds a temporary
375 # minimal framework (not including the Lib directory and such) in the current
377 RESSRCDIR=$(srcdir)/Mac/OSXResources/framework
378 $(PYTHONFRAMEWORKDIR)/Versions/$(VERSION)/$(PYTHONFRAMEWORK): \
380 $(RESSRCDIR)/Info.plist \
381 $(RESSRCDIR)/version.plist \
382 $(RESSRCDIR)/English.lproj/InfoPlist.strings
383 $(INSTALL) -d -m $(DIRMODE) $(PYTHONFRAMEWORKDIR)/Versions/$(VERSION)
384 if test "${UNIVERSALSDK}"; then \
385 $(CC) -o $(LDLIBRARY) -arch i386 -arch ppc -dynamiclib \
386 -isysroot "${UNIVERSALSDK}" \
387 -all_load $(LIBRARY) -Wl,-single_module \
388 -install_name $(DESTDIR)$(PYTHONFRAMEWORKINSTALLDIR)/Versions/$(VERSION)/Python \
389 -compatibility_version $(VERSION) \
390 -current_version $(VERSION); \
392 libtool -o $(LDLIBRARY) -dynamic $(OTHER_LIBTOOL_OPT) $(LIBRARY) \
395 $(INSTALL) -d -m $(DIRMODE) \
396 $(PYTHONFRAMEWORKDIR)/Versions/$(VERSION)/Resources/English.lproj
397 $(INSTALL_DATA) $(RESSRCDIR)/Info.plist \
398 $(PYTHONFRAMEWORKDIR)/Versions/$(VERSION)/Resources/Info.plist
399 $(INSTALL_DATA) $(RESSRCDIR)/version.plist \
400 $(PYTHONFRAMEWORKDIR)/Versions/$(VERSION)/Resources/version.plist
401 $(INSTALL_DATA) $(RESSRCDIR)/English.lproj/InfoPlist.strings \
402 $(PYTHONFRAMEWORKDIR)/Versions/$(VERSION)/Resources/English.lproj/InfoPlist.strings
403 $(LN) -fsn $(VERSION) $(PYTHONFRAMEWORKDIR)/Versions/Current
404 $(LN) -fsn Versions/Current/$(PYTHONFRAMEWORK) $(PYTHONFRAMEWORKDIR)/$(PYTHONFRAMEWORK)
405 $(LN) -fsn Versions/Current/Headers $(PYTHONFRAMEWORKDIR)/Headers
406 $(LN) -fsn Versions/Current/Resources $(PYTHONFRAMEWORKDIR)/Resources
408 # This rule builds the Cygwin Python DLL and import library if configured
409 # for a shared core library; otherwise, this rule is a noop.
410 $(DLLLIBRARY) libpython$(VERSION).dll.a: $(LIBRARY_OBJS)
411 if test -n "$(DLLLIBRARY)"; then \
412 $(LDSHARED) -Wl,--out-implib=$@ -o $(DLLLIBRARY) $^ \
413 $(LIBS) $(MODLIBS) $(SYSLIBS); \
418 oldsharedmods: $(SHAREDMODS)
421 Makefile Modules/config.c: Makefile.pre \
422 $(srcdir)/Modules/config.c.in \
424 Modules/Setup.config \
427 $(SHELL) $(MAKESETUP) -c $(srcdir)/Modules/config.c.in \
429 Modules/Setup.config \
430 Modules/Setup.local \
433 @echo "The Makefile was updated, you may need to re-run make."
436 Modules/Setup: $(srcdir)/Modules/Setup.dist
437 @if test -f Modules/Setup; then \
438 echo "-----------------------------------------------"; \
439 echo "Modules/Setup.dist is newer than Modules/Setup;"; \
440 echo "check to make sure you have all the updates you"; \
441 echo "need in your Modules/Setup file."; \
442 echo "Usually, copying Setup.dist to Setup will work."; \
443 echo "-----------------------------------------------"; \
446 ############################################################################
447 # Special rules for object files
449 Modules/getbuildinfo.o: $(PARSER_OBJS) \
455 $(srcdir)/Modules/getbuildinfo.c
456 $(CC) -c $(PY_CFLAGS) -DSVNVERSION=\"`LANG=C $(SVNVERSION)`\" -o $@ $(srcdir)/Modules/getbuildinfo.c
458 Modules/getpath.o: $(srcdir)/Modules/getpath.c Makefile
459 $(CC) -c $(PY_CFLAGS) -DPYTHONPATH='"$(PYTHONPATH)"' \
460 -DPREFIX='"$(prefix)"' \
461 -DEXEC_PREFIX='"$(exec_prefix)"' \
462 -DVERSION='"$(VERSION)"' \
463 -DVPATH='"$(VPATH)"' \
464 -o $@ $(srcdir)/Modules/getpath.c
466 Modules/python.o: $(srcdir)/Modules/python.c
467 $(MAINCC) -c $(PY_CFLAGS) -o $@ $(srcdir)/Modules/python.c
470 $(GRAMMAR_H) $(GRAMMAR_C): $(PGEN) $(GRAMMAR_INPUT)
471 -$(PGEN) $(GRAMMAR_INPUT) $(GRAMMAR_H) $(GRAMMAR_C)
474 $(CC) $(OPT) $(LDFLAGS) $(PGENOBJS) $(LIBS) -o $(PGEN)
476 Parser/grammar.o: $(srcdir)/Parser/grammar.c \
477 $(srcdir)/Include/token.h \
478 $(srcdir)/Include/grammar.h
479 Parser/metagrammar.o: $(srcdir)/Parser/metagrammar.c
481 Parser/tokenizer_pgen.o: $(srcdir)/Parser/tokenizer.c
483 $(AST_H): $(AST_ASDL) $(ASDLGEN_FILES)
484 $(ASDLGEN) -h $(AST_H_DIR) $(AST_ASDL)
486 $(AST_C): $(AST_ASDL) $(ASDLGEN_FILES)
487 $(ASDLGEN) -c $(AST_C_DIR) $(AST_ASDL)
489 Python/compile.o Python/symtable.o: $(GRAMMAR_H) $(AST_H)
491 Python/getplatform.o: $(srcdir)/Python/getplatform.c
492 $(CC) -c $(PY_CFLAGS) -DPLATFORM='"$(MACHDEP)"' -o $@ $(srcdir)/Python/getplatform.c
494 Python/importdl.o: $(srcdir)/Python/importdl.c
495 $(CC) -c $(PY_CFLAGS) -I$(DLINCLDIR) -o $@ $(srcdir)/Python/importdl.c
497 Objects/unicodectype.o: $(srcdir)/Objects/unicodectype.c \
498 $(srcdir)/Objects/unicodetype_db.h
500 ############################################################################
505 Include/Python-ast.h \
508 Include/boolobject.h \
509 Include/bufferobject.h \
511 Include/classobject.h \
516 Include/complexobject.h \
517 Include/descrobject.h \
518 Include/dictobject.h \
519 Include/enumobject.h \
520 Include/genobject.h \
521 Include/fileobject.h \
522 Include/floatobject.h \
523 Include/funcobject.h \
525 Include/intobject.h \
526 Include/intrcheck.h \
527 Include/iterobject.h \
528 Include/listobject.h \
529 Include/longobject.h \
530 Include/methodobject.h \
531 Include/modsupport.h \
532 Include/moduleobject.h \
535 Include/patchlevel.h \
543 Include/pythonrun.h \
544 Include/rangeobject.h \
545 Include/setobject.h \
546 Include/sliceobject.h \
547 Include/stringobject.h \
548 Include/structseq.h \
549 Include/structmember.h \
551 Include/sysmodule.h \
552 Include/traceback.h \
553 Include/tupleobject.h \
554 Include/unicodeobject.h \
555 Include/weakrefobject.h \
558 $(LIBRARY_OBJS) $(MODOBJS) Modules/python.o: $(PYTHON_HEADERS)
561 ######################################################################
563 # Test the interpreter (twice, once without .pyc files, once with)
564 # In the past, we've had problems where bugs in the marshalling or
565 # elsewhere caused bytecode read from .pyc files to behave differently
566 # than bytecode generated directly from a .py source file. Sometimes
567 # the bytecode read from a .pyc file had the bug, somtimes the directly
568 # generated bytecode. This is sometimes a very shy bug needing a lot of
571 TESTOPTS= -l $(EXTRATESTOPTS)
572 TESTPROG= $(srcdir)/Lib/test/regrtest.py
573 TESTPYTHON= $(RUNSHARED) ./$(BUILDPYTHON) -E -tt
575 -find $(srcdir)/Lib -name '*.py[co]' -print | xargs rm -f
576 -$(TESTPYTHON) $(TESTPROG) $(TESTOPTS)
577 $(TESTPYTHON) $(TESTPROG) $(TESTOPTS)
579 testall: all platform
580 -find $(srcdir)/Lib -name '*.py[co]' -print | xargs rm -f
581 -$(TESTPYTHON) $(TESTPROG) $(TESTOPTS) -uall
582 $(TESTPYTHON) $(TESTPROG) $(TESTOPTS) -uall
584 # Run the unitests for both architectures in a Universal build on OSX
585 # Must be run on an Intel box.
586 testuniversal: all platform
587 if [ `arch` != 'i386' ];then \
588 echo "This can only be used on OSX/i386" ;\
591 -find $(srcdir)/Lib -name '*.py[co]' -print | xargs rm -f
592 -$(TESTPYTHON) $(TESTPROG) $(TESTOPTS) -uall
593 $(TESTPYTHON) $(TESTPROG) $(TESTOPTS) -uall
594 $(RUNSHARED) /usr/libexec/oah/translate ./$(BUILDPYTHON) -E -tt $(TESTPROG) $(TESTOPTS) -uall
597 # Like testall, but with a single pass only
598 buildbottest: all platform
599 $(TESTPYTHON) $(TESTPROG) $(TESTOPTS) -uall -rw
601 QUICKTESTOPTS= $(TESTOPTS) -x test_thread test_signal test_strftime \
602 test_unicodedata test_re test_sre test_select test_poll \
603 test_linuxaudiodev test_struct test_sunaudiodev test_zlib
604 quicktest: all platform
605 -find $(srcdir)/Lib -name '*.py[co]' -print | xargs rm -f
606 -$(TESTPYTHON) $(TESTPROG) $(QUICKTESTOPTS)
607 $(TESTPYTHON) $(TESTPROG) $(QUICKTESTOPTS)
609 MEMTESTOPTS= $(QUICKTESTOPTS) -x test_dl test___all__ test_fork1 \
611 memtest: all platform
612 -rm -f $(srcdir)/Lib/test/*.py[co]
613 -$(TESTPYTHON) $(TESTPROG) $(MEMTESTOPTS)
614 $(TESTPYTHON) $(TESTPROG) $(MEMTESTOPTS)
617 install: @FRAMEWORKINSTALLFIRST@ altinstall bininstall maninstall @FRAMEWORKINSTALLLAST@
619 # Install almost everything without disturbing previous versions
620 altinstall: altbininstall libinstall inclinstall libainstall \
621 sharedinstall oldsharedinstall
623 # Install shared libraries enabled by Setup
624 DESTDIRS= $(exec_prefix) $(LIBDIR) $(BINLIBDEST) $(DESTSHARED)
626 oldsharedinstall: $(DESTSHARED) $(SHAREDMODS)
627 @for i in X $(SHAREDMODS); do \
628 if test $$i != X; then \
629 echo $(INSTALL_SHARED) $$i $(DESTSHARED)/`basename $$i`; \
630 $(INSTALL_SHARED) $$i $(DESTDIR)$(DESTSHARED)/`basename $$i`; \
635 @for i in $(DESTDIRS); \
637 if test ! -d $(DESTDIR)$$i; then \
638 echo "Creating directory $$i"; \
639 $(INSTALL) -d -m $(DIRMODE) $(DESTDIR)$$i; \
645 # Install the interpreter (by creating a hard link to python$(VERSION))
646 bininstall: altbininstall
647 -if test -f $(DESTDIR)$(BINDIR)/$(PYTHON) -o -h $(DESTDIR)$(BINDIR)/$(PYTHON); \
648 then rm -f $(DESTDIR)$(BINDIR)/$(PYTHON); \
651 (cd $(DESTDIR)$(BINDIR); $(LN) python$(VERSION)$(EXE) $(PYTHON))
653 # Install the interpreter with $(VERSION) affixed
654 # This goes into $(exec_prefix)
655 altbininstall: $(BUILDPYTHON)
656 @if test "$(PYTHONFRAMEWORKDIR)" != no-framework; then \
657 if test ! -f $(DESTDIR)$(PYTHONFRAMEWORKINSTALLDIR)/Versions/Current/Resources/Info.plist; then \
658 echo 'Framework build: use "make frameworkinstall" in stead of "make install"'; \
662 @for i in $(BINDIR) $(LIBDIR); \
664 if test ! -d $(DESTDIR)$$i; then \
665 echo "Creating directory $$i"; \
666 $(INSTALL) -d -m $(DIRMODE) $(DESTDIR)$$i; \
670 $(INSTALL_PROGRAM) $(BUILDPYTHON) $(DESTDIR)$(BINDIR)/python$(VERSION)$(EXE)
671 if test -f libpython$(VERSION)$(SO); then \
672 if test "$(SO)" = .dll; then \
673 $(INSTALL_SHARED) libpython$(VERSION)$(SO) $(DESTDIR)$(BINDIR); \
675 $(INSTALL_SHARED) libpython$(VERSION)$(SO) $(DESTDIR)$(LIBDIR)/$(INSTSONAME); \
676 if test libpython$(VERSION)$(SO) != $(INSTSONAME); then \
677 (cd $(DESTDIR)$(LIBDIR); $(LN) -sf $(INSTSONAME) libpython$(VERSION)$(SO)); \
683 # Install the manual page
685 @for i in $(MANDIR) $(MANDIR)/man1; \
687 if test ! -d $(DESTDIR)$$i; then \
688 echo "Creating directory $$i"; \
689 $(INSTALL) -d -m $(DIRMODE) $(DESTDIR)$$i; \
693 $(INSTALL_DATA) $(srcdir)/Misc/python.man \
694 $(DESTDIR)$(MANDIR)/man1/python.1
696 # Install the library
697 PLATDIR= plat-$(MACHDEP)
698 EXTRAPLATDIR= @EXTRAPLATDIR@
699 EXTRAMACHDEPPATH=@EXTRAMACHDEPPATH@
700 MACHDEPS= $(PLATDIR) $(EXTRAPLATDIR)
701 XMLLIBSUBDIRS= xmlcore xmlcore/dom xmlcore/etree xmlcore/parsers xmlcore/sax
702 PLATMACDIRS= plat-mac plat-mac/Carbon plat-mac/lib-scriptpackages \
703 plat-mac/lib-scriptpackages/_builtinSuites \
704 plat-mac/lib-scriptpackages/CodeWarrior \
705 plat-mac/lib-scriptpackages/Explorer \
706 plat-mac/lib-scriptpackages/Finder \
707 plat-mac/lib-scriptpackages/Netscape \
708 plat-mac/lib-scriptpackages/StdSuites \
709 plat-mac/lib-scriptpackages/SystemEvents \
710 plat-mac/lib-scriptpackages/Terminal
711 PLATMACPATH=:plat-mac:plat-mac/lib-scriptpackages
712 LIBSUBDIRS= lib-old lib-tk site-packages test test/output test/data \
713 test/decimaltestdata \
714 encodings compiler hotshot \
715 email email/mime email/test email/test/data \
716 sqlite3 sqlite3/test \
717 logging bsddb bsddb/test csv \
718 ctypes ctypes/test ctypes/macholib idlelib idlelib/Icons \
719 distutils distutils/command distutils/tests $(XMLLIBSUBDIRS) \
720 setuptools setuptools/command setuptools/tests setuptools.egg-info \
722 libinstall: $(BUILDPYTHON) $(srcdir)/Lib/$(PLATDIR)
723 @for i in $(SCRIPTDIR) $(LIBDEST); \
725 if test ! -d $(DESTDIR)$$i; then \
726 echo "Creating directory $$i"; \
727 $(INSTALL) -d -m $(DIRMODE) $(DESTDIR)$$i; \
731 @for d in $(LIBSUBDIRS); \
733 a=$(srcdir)/Lib/$$d; \
734 if test ! -d $$a; then continue; else true; fi; \
736 if test ! -d $(DESTDIR)$$b; then \
737 echo "Creating directory $$b"; \
738 $(INSTALL) -d -m $(DIRMODE) $(DESTDIR)$$b; \
742 @for i in $(srcdir)/Lib/*.py $(srcdir)/Lib/*.doc; \
744 if test -x $$i; then \
745 $(INSTALL_SCRIPT) $$i $(DESTDIR)$(LIBDEST); \
746 echo $(INSTALL_SCRIPT) $$i $(LIBDEST); \
748 $(INSTALL_DATA) $$i $(DESTDIR)$(LIBDEST); \
749 echo $(INSTALL_DATA) $$i $(LIBDEST); \
752 @for d in $(LIBSUBDIRS); \
754 a=$(srcdir)/Lib/$$d; \
755 if test ! -d $$a; then continue; else true; fi; \
756 if test `ls $$a | wc -l` -lt 1; then continue; fi; \
766 if test -d $$i; then continue; fi; \
767 if test -x $$i; then \
768 echo $(INSTALL_SCRIPT) $$i $$b; \
769 $(INSTALL_SCRIPT) $$i $(DESTDIR)$$b; \
771 echo $(INSTALL_DATA) $$i $$b; \
772 $(INSTALL_DATA) $$i $(DESTDIR)$$b; \
777 $(INSTALL_DATA) $(srcdir)/LICENSE $(DESTDIR)$(LIBDEST)/LICENSE.txt
778 PYTHONPATH=$(DESTDIR)$(LIBDEST) $(RUNSHARED) \
779 ./$(BUILDPYTHON) -Wi -tt $(DESTDIR)$(LIBDEST)/compileall.py \
781 -x 'bad_coding|badsyntax|site-packages' $(DESTDIR)$(LIBDEST)
782 PYTHONPATH=$(DESTDIR)$(LIBDEST) $(RUNSHARED) \
783 ./$(BUILDPYTHON) -Wi -tt -O $(DESTDIR)$(LIBDEST)/compileall.py \
785 -x 'bad_coding|badsyntax|site-packages' $(DESTDIR)$(LIBDEST)
786 -PYTHONPATH=$(DESTDIR)$(LIBDEST) $(RUNSHARED) \
787 ./$(BUILDPYTHON) -Wi -t $(DESTDIR)$(LIBDEST)/compileall.py \
788 -d $(LIBDEST)/site-packages -f \
789 -x badsyntax $(DESTDIR)$(LIBDEST)/site-packages
790 -PYTHONPATH=$(DESTDIR)$(LIBDEST) $(RUNSHARED) \
791 ./$(BUILDPYTHON) -Wi -t -O $(DESTDIR)$(LIBDEST)/compileall.py \
792 -d $(LIBDEST)/site-packages -f \
793 -x badsyntax $(DESTDIR)$(LIBDEST)/site-packages
795 # Create the PLATDIR source directory, if one wasn't distributed..
796 $(srcdir)/Lib/$(PLATDIR):
797 mkdir $(srcdir)/Lib/$(PLATDIR)
798 cp $(srcdir)/Lib/plat-generic/regen $(srcdir)/Lib/$(PLATDIR)/regen
799 export PATH; PATH="`pwd`:$$PATH"; \
800 export PYTHONPATH; PYTHONPATH="`pwd`/Lib"; \
801 export DYLD_FRAMEWORK_PATH; DYLD_FRAMEWORK_PATH="`pwd`"; \
802 export EXE; EXE="$(BUILDEXE)"; \
803 cd $(srcdir)/Lib/$(PLATDIR); ./regen
805 # Install the include files
806 INCLDIRSTOMAKE=$(INCLUDEDIR) $(CONFINCLUDEDIR) $(INCLUDEPY) $(CONFINCLUDEPY)
808 @for i in $(INCLDIRSTOMAKE); \
810 if test ! -d $(DESTDIR)$$i; then \
811 echo "Creating directory $$i"; \
812 $(INSTALL) -d -m $(DIRMODE) $(DESTDIR)$$i; \
816 @for i in $(srcdir)/Include/*.h; \
818 echo $(INSTALL_DATA) $$i $(INCLUDEPY); \
819 $(INSTALL_DATA) $$i $(DESTDIR)$(INCLUDEPY); \
821 $(INSTALL_DATA) pyconfig.h $(DESTDIR)$(CONFINCLUDEPY)/pyconfig.h
823 # Install the library and miscellaneous stuff needed for extending/embedding
824 # This goes into $(exec_prefix)
825 LIBPL= $(LIBP)/config
827 @for i in $(LIBDIR) $(LIBP) $(LIBPL); \
829 if test ! -d $(DESTDIR)$$i; then \
830 echo "Creating directory $$i"; \
831 $(INSTALL) -d -m $(DIRMODE) $(DESTDIR)$$i; \
835 @if test -d $(LIBRARY); then :; else \
836 if test "$(PYTHONFRAMEWORKDIR)" = no-framework; then \
837 if test "$(SO)" = .dll; then \
838 $(INSTALL_DATA) $(LDLIBRARY) $(DESTDIR)$(LIBPL) ; \
840 $(INSTALL_DATA) $(LIBRARY) $(DESTDIR)$(LIBPL)/$(LIBRARY) ; \
841 $(RANLIB) $(DESTDIR)$(LIBPL)/$(LIBRARY) ; \
844 echo Skip install of $(LIBRARY) - use make frameworkinstall; \
847 $(INSTALL_DATA) Modules/config.c $(DESTDIR)$(LIBPL)/config.c
848 $(INSTALL_DATA) Modules/python.o $(DESTDIR)$(LIBPL)/python.o
849 $(INSTALL_DATA) $(srcdir)/Modules/config.c.in $(DESTDIR)$(LIBPL)/config.c.in
850 $(INSTALL_DATA) Makefile $(DESTDIR)$(LIBPL)/Makefile
851 $(INSTALL_DATA) Modules/Setup $(DESTDIR)$(LIBPL)/Setup
852 $(INSTALL_DATA) Modules/Setup.local $(DESTDIR)$(LIBPL)/Setup.local
853 $(INSTALL_DATA) Modules/Setup.config $(DESTDIR)$(LIBPL)/Setup.config
854 $(INSTALL_SCRIPT) $(srcdir)/Modules/makesetup $(DESTDIR)$(LIBPL)/makesetup
855 $(INSTALL_SCRIPT) $(srcdir)/install-sh $(DESTDIR)$(LIBPL)/install-sh
856 # Substitution happens here, as the completely-expanded BINDIR
857 # is not available in configure
858 sed -e "s,@BINDIR@,$(BINDIR)," < $(srcdir)/Misc/python-config.in >python-config
859 $(INSTALL_SCRIPT) python-config $(DESTDIR)$(BINDIR)/python-config
861 @if [ -s Modules/python.exp -a \
862 "`echo $(MACHDEP) | sed 's/^\(...\).*/\1/'`" = "aix" ]; then \
863 echo; echo "Installing support files for building shared extension modules on AIX:"; \
864 $(INSTALL_DATA) Modules/python.exp \
865 $(DESTDIR)$(LIBPL)/python.exp; \
866 echo; echo "$(LIBPL)/python.exp"; \
867 $(INSTALL_SCRIPT) $(srcdir)/Modules/makexp_aix \
868 $(DESTDIR)$(LIBPL)/makexp_aix; \
869 echo "$(LIBPL)/makexp_aix"; \
870 $(INSTALL_SCRIPT) $(srcdir)/Modules/ld_so_aix \
871 $(DESTDIR)$(LIBPL)/ld_so_aix; \
872 echo "$(LIBPL)/ld_so_aix"; \
873 echo; echo "See Misc/AIX-NOTES for details."; \
876 @case "$(MACHDEP)" in beos*) \
877 echo; echo "Installing support files for building shared extension modules on BeOS:"; \
878 $(INSTALL_DATA) Misc/BeOS-NOTES $(DESTDIR)$(LIBPL)/README; \
879 echo; echo "$(LIBPL)/README"; \
880 $(INSTALL_SCRIPT) Modules/ar_beos $(DESTDIR)$(LIBPL)/ar_beos; \
881 echo "$(LIBPL)/ar_beos"; \
882 $(INSTALL_SCRIPT) Modules/ld_so_beos $(DESTDIR)$(LIBPL)/ld_so_beos; \
883 echo "$(LIBPL)/ld_so_beos"; \
884 echo; echo "See Misc/BeOS-NOTES for details."; \
888 # Install the dynamically loadable modules
889 # This goes into $(exec_prefix)
891 $(RUNSHARED) ./$(BUILDPYTHON) -E $(srcdir)/setup.py install \
893 --install-scripts=$(BINDIR) \
894 --install-platlib=$(DESTSHARED) \
897 # Here are a couple of targets for MacOSX again, to install a full
898 # framework-based Python. frameworkinstall installs everything, the
899 # subtargets install specific parts. Much of the actual work is offloaded to
900 # the Makefile in Mac/OSX
903 # This target is here for backward compatiblity, previous versions of Python
904 # hadn't integrated framework installation in the normal install process.
905 frameworkinstall: install
907 # On install, we re-make the framework
908 # structure in the install location, /Library/Frameworks/ or the argument to
909 # --enable-framework. If --enable-framework has been specified then we have
910 # automatically set prefix to the location deep down in the framework, so we
911 # only have to cater for the structural bits of the framework.
913 frameworkinstallframework: frameworkinstallstructure install frameworkinstallmaclib
915 frameworkinstallstructure: $(LDLIBRARY)
916 @if test "$(PYTHONFRAMEWORKDIR)" = no-framework; then \
917 echo Not configured with --enable-framework; \
921 @for i in $(prefix)/Resources/English.lproj $(prefix)/lib; do\
922 if test ! -d $(DESTDIR)$$i; then \
923 echo "Creating directory $(DESTDIR)$$i"; \
924 $(INSTALL) -d -m $(DIRMODE) $(DESTDIR)$$i; \
928 $(LN) -fsn include/python$(VERSION) $(DESTDIR)$(prefix)/Headers
929 $(INSTALL_DATA) $(RESSRCDIR)/Info.plist $(DESTDIR)$(prefix)/Resources/Info.plist
930 $(INSTALL_DATA) $(RESSRCDIR)/version.plist $(DESTDIR)$(prefix)/Resources/version.plist
931 $(INSTALL_DATA) $(RESSRCDIR)/English.lproj/InfoPlist.strings \
932 $(DESTDIR)$(prefix)/Resources/English.lproj/InfoPlist.strings
933 $(LN) -fsn $(VERSION) $(DESTDIR)$(PYTHONFRAMEWORKINSTALLDIR)/Versions/Current
934 $(LN) -fsn Versions/Current/Python $(DESTDIR)$(PYTHONFRAMEWORKINSTALLDIR)/Python
935 $(LN) -fsn Versions/Current/Headers $(DESTDIR)$(PYTHONFRAMEWORKINSTALLDIR)/Headers
936 $(LN) -fsn Versions/Current/Resources $(DESTDIR)$(PYTHONFRAMEWORKINSTALLDIR)/Resources
937 $(INSTALL_SHARED) $(LDLIBRARY) $(DESTDIR)$(PYTHONFRAMEWORKPREFIX)/$(LDLIBRARY)
939 # This installs Mac/Lib into the framework
940 frameworkinstallmaclib:
941 cd Mac/OSX && $(MAKE) installmacsubtree DESTDIR="$(DESTDIR)"
943 # This installs the IDE, the Launcher and other apps into /Applications
944 frameworkinstallapps:
945 cd Mac/OSX && $(MAKE) installapps DESTDIR="$(DESTDIR)"
947 # This install the unix python and pythonw tools in /usr/local/bin
948 frameworkinstallunixtools:
949 cd Mac/OSX && $(MAKE) installunixtools DESTDIR="$(DESTDIR)"
951 # This installs the Demos and Tools into the applications directory.
952 # It is not part of a normal frameworkinstall
953 frameworkinstallextras:
954 $(MAKE) -f Mac/OSX/Makefile installextras \
955 $(RUNSHARED) BUILDPYTHON=./$(BUILDPYTHON) DIRMODE=$(DIRMODE) FILEMODE=$(FILEMODE) \
956 srcdir=$(srcdir) builddir=. DESTDIR=$(DESTDIR)
958 # This installs a few of the useful scripts in Tools/scripts
960 SRCDIR=$(srcdir) $(RUNSHARED) \
961 ./$(BUILDPYTHON) $(srcdir)/Tools/scripts/setup.py install \
963 --install-scripts=$(BINDIR) \
966 # Build the toplevel Makefile
967 Makefile.pre: Makefile.pre.in config.status
968 CONFIG_FILES=Makefile.pre CONFIG_HEADERS= $(SHELL) config.status
969 $(MAKE) -f Makefile.pre Makefile
971 # Run the configure script.
972 config.status: $(srcdir)/configure
973 $(SHELL) $(srcdir)/configure $(CONFIG_ARGS)
975 .PRECIOUS: config.status $(BUILDPYTHON) Makefile Makefile.pre
977 # Some make's put the object file in the current directory
979 $(CC) -c $(PY_CFLAGS) -o $@ $<
981 # Run reindent on the library
983 ./python$(EXEEXT) $(srcdir)/Tools/scripts/reindent.py -r $(srcdir)/Lib
985 # Rerun configure with the same options as it was run last time,
986 # provided the config.status script exists
988 $(SHELL) config.status --recheck
989 $(SHELL) config.status
991 # Rebuild the configure script from configure.in; also rebuild pyconfig.h.in
993 (cd $(srcdir); autoconf)
994 (cd $(srcdir); autoheader)
996 # Create a tags file for vi
999 ctags -w -t Include/*.h; \
1000 for i in $(SRCDIRS); do ctags -w -t -a $$i/*.[ch]; \
1004 # Create a tags file for GNU Emacs
1007 etags Include/*.h; \
1008 for i in $(SRCDIRS); do etags -a $$i/*.[ch]; done
1010 # Sanitation targets -- clean leaves libraries, executables and tags
1011 # files, which clobber removes those as well
1013 find $(srcdir) -name '*.py[co]' -exec rm -f {} ';'
1016 find . -name '*.o' -exec rm -f {} ';'
1017 find . -name '*.s[ol]' -exec rm -f {} ';'
1018 find $(srcdir)/build -name 'fficonfig.h' -exec rm -f {} ';' || true
1019 find $(srcdir)/build -name 'fficonfig.py' -exec rm -f {} ';' || true
1022 -rm -f $(BUILDPYTHON) $(PGEN) $(LIBRARY) $(LDLIBRARY) $(DLLLIBRARY) \
1024 config.cache config.log pyconfig.h Modules/config.c
1025 -rm -rf build platform
1026 -rm -rf $(PYTHONFRAMEWORKDIR)
1028 # Make things extra clean, before making a distribution:
1029 # remove all generated files, even Makefile[.pre]
1030 # Keep configure and Python-ast.[ch], it's possible they can't be generated
1032 -rm -f core Makefile Makefile.pre config.status \
1033 Modules/Setup Modules/Setup.local Modules/Setup.config
1034 find $(srcdir) '(' -name '*.fdc' -o -name '*~' \
1035 -o -name '[@,#]*' -o -name '*.old' \
1036 -o -name '*.orig' -o -name '*.rej' \
1037 -o -name '*.bak' ')' \
1040 # Check for smelly exported symbols (not starting with Py/_Py)
1042 nm -p $(LIBRARY) | \
1043 sed -n "/ [TDB] /s/.* //p" | grep -v "^_*Py" | sort -u; \
1045 # Find files with funny names
1047 find $(DISTDIRS) -type d \
1048 -o -name '*.[chs]' \
1058 -o -name '*,[vpt]' \
1060 -o -name 'Setup.*' \
1063 -o -name ChangeLog \
1064 -o -name Repository \
1070 -o -name .cvsignore \
1076 Python/thread.o: @THREADHEADERS@
1078 # Declare targets that aren't real files
1079 .PHONY: all sharedmods oldsharedmods test quicktest memtest
1080 .PHONY: install altinstall oldsharedinstall bininstall altbininstall
1081 .PHONY: maninstall libinstall inclinstall libainstall sharedinstall
1082 .PHONY: frameworkinstall frameworkinstallframework frameworkinstallstructure
1083 .PHONY: frameworkinstallmaclib frameworkinstallapps frameworkinstallunixtools
1084 .PHONY: recheck autoconf clean clobber distclean smelly funny
1086 # IF YOU PUT ANYTHING HERE IT WILL GO AWAY