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 # Shell used by make (some versions default to the login shell, which is bad)
40 # Use this to make a link between python$(VERSION) and python in $(BINDIR)
43 # Portable install script (configure doesn't always guess right)
45 INSTALL_PROGRAM=@INSTALL_PROGRAM@
46 INSTALL_SCRIPT= @INSTALL_SCRIPT@
47 INSTALL_DATA= @INSTALL_DATA@
48 # Shared libraries must be installed with executable mode on some systems;
49 # rather than figuring out exactly which, we always give them executable mode.
50 # Also, making them read-only seems to be a good idea...
51 INSTALL_SHARED= ${INSTALL} -m 555
53 MAKESETUP= $(srcdir)/Modules/makesetup
57 BASECFLAGS= @BASECFLAGS@
58 CFLAGS= $(BASECFLAGS) $(OPT)
59 CPPFLAGS= -I. -I$(srcdir)/Include
64 LINKFORSHARED= @LINKFORSHARED@
65 # Extra C flags added for building the interpreter object files.
66 CFLAGSFORSHARED=@CFLAGSFORSHARED@
67 # C flags used for building the interpreter object files
68 PY_CFLAGS= $(CFLAGS) $(CPPFLAGS) $(CFLAGSFORSHARED) -DPy_BUILD_CORE
71 # Machine-dependent subdirectories
74 # Install prefix for architecture-independent files
77 # Install prefix for architecture-dependent files
78 exec_prefix= @exec_prefix@
80 # Expanded directories
81 BINDIR= $(exec_prefix)/bin
82 LIBDIR= $(exec_prefix)/lib
84 INCLUDEDIR= @includedir@
85 CONFINCLUDEDIR= $(exec_prefix)/include
86 SCRIPTDIR= $(prefix)/lib
88 # Detailed destination directories
89 BINLIBDEST= $(LIBDIR)/python$(VERSION)
90 LIBDEST= $(SCRIPTDIR)/python$(VERSION)
91 INCLUDEPY= $(INCLUDEDIR)/python$(VERSION)
92 CONFINCLUDEPY= $(CONFINCLUDEDIR)/python$(VERSION)
93 LIBP= $(LIBDIR)/python$(VERSION)
95 # Symbols used for using shared libraries
98 BLDSHARED= @BLDSHARED@
99 DESTSHARED= $(BINLIBDEST)/lib-dynload
101 # Executable suffix (.exe on Windows and Mac OS X)
103 BUILDEXE= @BUILDEXEEXT@
105 # Short name and location for Mac OS X Python framework
106 PYTHONFRAMEWORK= @PYTHONFRAMEWORK@
107 PYTHONFRAMEWORKDIR= @PYTHONFRAMEWORKDIR@
108 PYTHONFRAMEWORKPREFIX= @PYTHONFRAMEWORKPREFIX@
109 PYTHONFRAMEWORKINSTALLDIR= @PYTHONFRAMEWORKINSTALLDIR@
110 # Options to enable prebinding (for fast startup)
111 OTHER_LIBTOOL_OPT = -prebind -seg1addr 0x10000000
113 # Environment to run shared python without installed libraries
114 RUNSHARED= @RUNSHARED@
116 # Modes for directories, executables and data files created by the
117 # install process. Default to user-only-writable for all file types.
122 # configure script arguments
123 CONFIG_ARGS= @CONFIG_ARGS@
126 # Subdirectories with code
129 # Other subdirectories
130 SUBDIRSTOO= Include Lib Misc Demo
132 # Files and directories to be distributed
133 CONFIGFILES= configure configure.in acconfig.h pyconfig.h.in Makefile.pre.in
134 DISTFILES= README ChangeLog $(CONFIGFILES)
135 DISTDIRS= $(SUBDIRS) $(SUBDIRSTOO) Ext-dummy
136 DIST= $(DISTFILES) $(DISTDIRS)
140 LDLIBRARY= @LDLIBRARY@
141 BLDLIBRARY= @BLDLIBRARY@
142 DLLLIBRARY= @DLLLIBRARY@
143 LDLIBRARYDIR= @LDLIBRARYDIR@
144 INSTSONAME= @INSTSONAME@
150 SYSLIBS= $(LIBM) $(LIBC)
154 THREADOBJ= @THREADOBJ@
155 DLINCLDIR= @DLINCLDIR@
156 DYNLOADFILE= @DYNLOADFILE@
157 MACHDEP_OBJS= @MACHDEP_OBJS@
158 UNICODE_OBJS= @UNICODE_OBJS@
161 BUILDPYTHON= python$(BUILDEXE)
163 # === Definitions added by makesetup ===
166 ##########################################################################
174 # Used of signalmodule.o is not available
175 SIGNAL_OBJS= @SIGNAL_OBJS@
178 ##########################################################################
180 GRAMMAR_H= $(srcdir)/Include/graminit.h
181 GRAMMAR_C= $(srcdir)/Python/graminit.c
182 GRAMMAR_INPUT= $(srcdir)/Grammar/Grammar
185 ##########################################################################
187 PGEN= Parser/pgen$(EXE)
197 Parser/metagrammar.o \
202 PARSER_OBJS= $(POBJS) Parser/myreadline.o Parser/tokenizer.o
206 Python/mysnprintf.o \
207 Parser/tokenizer_pgen.o \
208 Parser/printgrammar.o \
211 PGENOBJS= $(PGENMAIN) $(POBJS) $(PGOBJS)
214 ##########################################################################
217 Python/bltinmodule.o \
218 Python/exceptions.o \
224 Python/frozenmain.o \
227 Python/getcompiler.o \
228 Python/getcopyright.o \
230 Python/getplatform.o \
231 Python/getversion.o \
236 Python/modsupport.o \
238 Python/mysnprintf.o \
242 Python/structmember.o \
247 Python/$(DYNLOADFILE) \
252 ##########################################################################
256 Objects/boolobject.o \
257 Objects/bufferobject.o \
258 Objects/cellobject.o \
259 Objects/classobject.o \
261 Objects/complexobject.o \
262 Objects/descrobject.o \
263 Objects/enumobject.o \
264 Objects/fileobject.o \
265 Objects/floatobject.o \
266 Objects/frameobject.o \
267 Objects/funcobject.o \
268 Objects/intobject.o \
269 Objects/iterobject.o \
270 Objects/listobject.o \
271 Objects/longobject.o \
272 Objects/dictobject.o \
273 Objects/methodobject.o \
274 Objects/moduleobject.o \
277 Objects/rangeobject.o \
278 Objects/sliceobject.o \
279 Objects/stringobject.o \
280 Objects/structseq.o \
281 Objects/tupleobject.o \
282 Objects/typeobject.o \
283 Objects/weakrefobject.o \
287 ##########################################################################
288 # objects that get linked into the Python library
290 Modules/getbuildinfo.o \
298 #########################################################################
302 all: $(BUILDPYTHON) oldsharedmods sharedmods
304 # Build the interpreter
305 $(BUILDPYTHON): Modules/$(MAINOBJ) $(LIBRARY) $(LDLIBRARY)
306 $(LINKCC) $(LDFLAGS) $(LINKFORSHARED) -o $@ \
308 $(BLDLIBRARY) $(LIBS) $(MODLIBS) $(SYSLIBS) $(LDLAST)
310 platform: $(BUILDPYTHON)
311 $(RUNSHARED) ./$(BUILDPYTHON) -E -c 'import sys ; from distutils.util import get_platform ; print get_platform()+"-"+sys.version[0:3]' >platform
314 # Build the shared modules
315 sharedmods: $(BUILDPYTHON)
316 case $$MAKEFLAGS in \
317 *-s*) $(RUNSHARED) CC='$(CC)' LDSHARED='$(BLDSHARED)' OPT='$(OPT)' ./$(BUILDPYTHON) -E $(srcdir)/setup.py -q build;; \
318 *) $(RUNSHARED) CC='$(CC)' LDSHARED='$(BLDSHARED)' OPT='$(OPT)' ./$(BUILDPYTHON) -E $(srcdir)/setup.py build;; \
321 # buildno should really depend on something like LIBRARY_SRC
322 buildno: $(PARSER_OBJS) \
328 $(srcdir)/Modules/getbuildinfo.c
329 if test -f buildno; then \
330 expr `cat buildno` + 1 >buildno1; \
331 mv -f buildno1 buildno; \
332 else echo 1 >buildno; fi
334 # Build static library
335 # avoid long command lines, same as LIBRARY_OBJS
336 $(LIBRARY): $(LIBRARY_OBJS)
338 $(AR) cr $@ Modules/getbuildinfo.o
339 $(AR) cr $@ $(PARSER_OBJS)
340 $(AR) cr $@ $(OBJECT_OBJS)
341 $(AR) cr $@ $(PYTHON_OBJS)
342 $(AR) cr $@ $(MODULE_OBJS) $(SIGNAL_OBJS)
343 $(AR) cr $@ $(MODOBJS)
346 libpython$(VERSION).so: $(LIBRARY_OBJS)
347 if test $(INSTSONAME) != $(LDLIBRARY); then \
348 $(LDSHARED) -Wl,-soname=$(INSTSONAME) -o $(INSTSONAME) $(LIBRARY_OBJS) $(SHLIBS) $(LIBC) $(LIBM); \
349 $(LN) -f $(INSTSONAME) $@; \
351 $(LDSHARED) -o $@ $(LIBRARY_OBJS) $(SHLIBS) $(LIBC) $(LIBM); \
354 libpython$(VERSION).sl: $(LIBRARY_OBJS)
355 $(LDSHARED) -o $@ $(LIBRARY_OBJS) $(LIBC) $(LIBM)
357 # This rule is here for OPENSTEP/Rhapsody/MacOSX. It builds a temporary
358 # minimal framework (not including the Lib directory and such) in the current
360 RESSRCDIR=$(srcdir)/Mac/OSXResources/framework
361 $(PYTHONFRAMEWORKDIR)/Versions/$(VERSION)/$(PYTHONFRAMEWORK): \
363 $(RESSRCDIR)/Info.plist \
364 $(RESSRCDIR)/version.plist \
365 $(RESSRCDIR)/English.lproj/InfoPlist.strings
366 $(INSTALL) -d -m $(DIRMODE) $(PYTHONFRAMEWORKDIR)/Versions/$(VERSION)
367 libtool -o $(LDLIBRARY) -dynamic $(OTHER_LIBTOOL_OPT) $(LIBRARY) \
368 -framework System @LIBTOOL_CRUFT@
369 $(INSTALL) -d -m $(DIRMODE) \
370 $(PYTHONFRAMEWORKDIR)/Versions/$(VERSION)/Resources/English.lproj
371 $(INSTALL_DATA) $(RESSRCDIR)/Info.plist \
372 $(PYTHONFRAMEWORKDIR)/Versions/$(VERSION)/Resources/Info.plist
373 $(INSTALL_DATA) $(RESSRCDIR)/version.plist \
374 $(PYTHONFRAMEWORKDIR)/Versions/$(VERSION)/Resources/version.plist
375 $(INSTALL_DATA) $(RESSRCDIR)/English.lproj/InfoPlist.strings \
376 $(PYTHONFRAMEWORKDIR)/Versions/$(VERSION)/Resources/English.lproj/InfoPlist.strings
377 $(LN) -fsn $(VERSION) $(PYTHONFRAMEWORKDIR)/Versions/Current
378 $(LN) -fsn Versions/Current/Python $(PYTHONFRAMEWORKDIR)/Python
379 $(LN) -fsn Versions/Current/Headers $(PYTHONFRAMEWORKDIR)/Headers
380 $(LN) -fsn Versions/Current/Resources $(PYTHONFRAMEWORKDIR)/Resources
382 # This rule builds the Cygwin Python DLL
383 libpython$(VERSION).dll.a: $(LIBRARY_OBJS)
384 $(LDSHARED) -Wl,--out-implib=$@ -o $(DLLLIBRARY) $^ \
385 $(LIBS) $(MODLIBS) $(SYSLIBS)
388 oldsharedmods: $(SHAREDMODS)
391 Makefile Modules/config.c: Makefile.pre \
392 $(srcdir)/Modules/config.c.in \
394 Modules/Setup.config \
397 $(SHELL) $(MAKESETUP) -c $(srcdir)/Modules/config.c.in \
399 Modules/Setup.config \
400 Modules/Setup.local \
403 @echo "The Makefile was updated, you may need to re-run make."
406 Modules/Setup: $(srcdir)/Modules/Setup.dist
407 @if test -f Modules/Setup; then \
408 echo "-----------------------------------------------"; \
409 echo "Modules/Setup.dist is newer than Modules/Setup;"; \
410 echo "check to make sure you have all the updates you"; \
411 echo "need in your Modules/Setup file."; \
412 echo "Usually, copying Setup.dist to Setup will work."; \
413 echo "-----------------------------------------------"; \
416 ############################################################################
417 # Special rules for object files
419 Modules/getbuildinfo.o: $(srcdir)/Modules/getbuildinfo.c buildno
420 $(CC) -c $(PY_CFLAGS) -DBUILD=`cat buildno` -o $@ $(srcdir)/Modules/getbuildinfo.c
422 Modules/getpath.o: $(srcdir)/Modules/getpath.c Makefile
423 $(CC) -c $(PY_CFLAGS) -DPYTHONPATH='"$(PYTHONPATH)"' \
424 -DPREFIX='"$(prefix)"' \
425 -DEXEC_PREFIX='"$(exec_prefix)"' \
426 -DVERSION='"$(VERSION)"' \
427 -DVPATH='"$(VPATH)"' \
428 -o $@ $(srcdir)/Modules/getpath.c
430 Modules/ccpython.o: $(srcdir)/Modules/ccpython.cc
431 $(CXX) -c $(PY_CFLAGS) -o $@ $(srcdir)/Modules/ccpython.cc
434 $(GRAMMAR_H) $(GRAMMAR_C): $(PGEN) $(GRAMMAR_INPUT)
435 -$(PGEN) $(GRAMMAR_INPUT) $(GRAMMAR_H) $(GRAMMAR_C)
438 $(CC) $(OPT) $(LDFLAGS) $(PGENOBJS) $(LIBS) -o $(PGEN)
440 Parser/grammar.o: $(srcdir)/Parser/grammar.c \
441 $(srcdir)/Include/token.h \
442 $(srcdir)/Include/grammar.h
443 Parser/metagrammar.o: $(srcdir)/Parser/metagrammar.c
445 Parser/tokenizer_pgen.o: $(srcdir)/Parser/tokenizer.c
448 Python/compile.o Python/symtable.o: $(GRAMMAR_H)
450 Python/getplatform.o: $(srcdir)/Python/getplatform.c
451 $(CC) -c $(PY_CFLAGS) -DPLATFORM='"$(MACHDEP)"' -o $@ $(srcdir)/Python/getplatform.c
453 Python/importdl.o: $(srcdir)/Python/importdl.c
454 $(CC) -c $(PY_CFLAGS) -I$(DLINCLDIR) -o $@ $(srcdir)/Python/importdl.c
456 Objects/unicodectype.o: $(srcdir)/Objects/unicodectype.c \
457 $(srcdir)/Objects/unicodetype_db.h
459 ############################################################################
465 Include/boolobject.h \
466 Include/bufferobject.h \
468 Include/classobject.h \
472 Include/complexobject.h \
473 Include/descrobject.h \
474 Include/dictobject.h \
475 Include/enumobject.h \
476 Include/fileobject.h \
477 Include/floatobject.h \
478 Include/funcobject.h \
480 Include/intobject.h \
481 Include/intrcheck.h \
482 Include/iterobject.h \
483 Include/listobject.h \
484 Include/longobject.h \
485 Include/methodobject.h \
486 Include/modsupport.h \
487 Include/moduleobject.h \
490 Include/patchlevel.h \
497 Include/pythonrun.h \
498 Include/rangeobject.h \
499 Include/sliceobject.h \
500 Include/stringobject.h \
501 Include/structseq.h \
502 Include/structmember.h \
504 Include/sysmodule.h \
505 Include/traceback.h \
506 Include/tupleobject.h \
507 Include/unicodeobject.h \
508 Include/weakrefobject.h \
511 $(LIBRARY_OBJS) $(MODOBJS) Modules/$(MAINOBJ): $(PYTHON_HEADERS)
514 ######################################################################
516 # Test the interpreter (twice, once without .pyc files, once with)
517 # In the past, we've had problems where bugs in the marshalling or
518 # elsewhere caused bytecode read from .pyc files to behave differently
519 # than bytecode generated directly from a .py source file. Sometimes
520 # the bytecode read from a .pyc file had the bug, somtimes the directly
521 # generated bytecode. This is sometimes a very shy bug needing a lot of
525 TESTPROG= $(srcdir)/Lib/test/regrtest.py
526 TESTPYTHON= $(RUNSHARED) ./$(BUILDPYTHON) -E -tt
528 -find $(srcdir)/Lib -name '*.py[co]' -print | xargs rm -f
529 -$(TESTPYTHON) $(TESTPROG) $(TESTOPTS)
530 $(TESTPYTHON) $(TESTPROG) $(TESTOPTS)
532 testall: all platform
533 -find $(srcdir)/Lib -name '*.py[co]' -print | xargs rm -f
534 -$(TESTPYTHON) $(TESTPROG) $(TESTOPTS) -uall
535 $(TESTPYTHON) $(TESTPROG) $(TESTOPTS) -uall
537 QUICKTESTOPTS= $(TESTOPTS) -x test_thread test_signal test_strftime \
538 test_unicodedata test_re test_sre test_select test_poll \
539 test_linuxaudiodev test_struct test_sunaudiodev test_zlib
540 quicktest: all platform
541 -find $(srcdir)/Lib -name '*.py[co]' -print | xargs rm -f
542 -$(TESTPYTHON) $(TESTPROG) $(QUICKTESTOPTS)
543 $(TESTPYTHON) $(TESTPROG) $(QUICKTESTOPTS)
545 MEMTESTOPTS= $(QUICKTESTOPTS) -x test_dl test___all__ test_fork1 \
547 memtest: all platform
548 -rm -f $(srcdir)/Lib/test/*.py[co]
549 -$(TESTPYTHON) $(TESTPROG) $(MEMTESTOPTS)
550 $(TESTPYTHON) $(TESTPROG) $(MEMTESTOPTS)
553 install: altinstall bininstall maninstall
555 # Install almost everything without disturbing previous versions
556 altinstall: altbininstall libinstall inclinstall libainstall \
557 sharedinstall oldsharedinstall
559 # Install shared libraries enabled by Setup
560 DESTDIRS= $(exec_prefix) $(LIBDIR) $(BINLIBDEST) $(DESTSHARED)
562 oldsharedinstall: $(DESTSHARED) $(SHAREDMODS)
563 @for i in X $(SHAREDMODS); do \
564 if test $$i != X; then \
565 echo $(INSTALL_SHARED) $$i $(DESTSHARED)/`basename $$i`; \
566 $(INSTALL_SHARED) $$i $(DESTDIR)$(DESTSHARED)/`basename $$i`; \
571 @for i in $(DESTDIRS); \
573 if test ! -d $(DESTDIR)$$i; then \
574 echo "Creating directory $$i"; \
575 $(INSTALL) -d -m $(DIRMODE) $(DESTDIR)$$i; \
581 # Install the interpreter (by creating a hard link to python$(VERSION))
582 bininstall: altbininstall
583 -if test -f $(DESTDIR)$(BINDIR)/$(PYTHON) -o -h $(DESTDIR)$(BINDIR)/$(PYTHON); \
584 then rm -f $(DESTDIR)$(BINDIR)/$(PYTHON); \
587 (cd $(DESTDIR)$(BINDIR); $(LN) python$(VERSION)$(EXE) $(PYTHON))
589 # Install the interpreter with $(VERSION) affixed
590 # This goes into $(exec_prefix)
591 altbininstall: $(BUILDPYTHON)
592 @if test "$(PYTHONFRAMEWORKDIR)" != no-framework; then \
593 if test ! -f $(DESTDIR)$(PYTHONFRAMEWORKINSTALLDIR)/Versions/Current/Resources/Info.plist; then \
594 echo 'Framework build: use "make frameworkinstall" in stead of "make install"'; \
598 @for i in $(BINDIR) $(LIBDIR); \
600 if test ! -d $(DESTDIR)$$i; then \
601 echo "Creating directory $$i"; \
602 $(INSTALL) -d -m $(DIRMODE) $(DESTDIR)$$i; \
606 $(INSTALL_PROGRAM) $(BUILDPYTHON) $(DESTDIR)$(BINDIR)/python$(VERSION)$(EXE)
607 if test -f libpython$(VERSION)$(SO); then \
608 if test "$(SO)" = .dll; then \
609 $(INSTALL_SHARED) libpython$(VERSION)$(SO) $(DESTDIR)$(BINDIR); \
611 $(INSTALL_SHARED) libpython$(VERSION)$(SO) $(DESTDIR)$(LIBDIR)/$(INSTSONAME); \
616 # Install the manual page
618 @for i in $(MANDIR) $(MANDIR)/man1; \
620 if test ! -d $(DESTDIR)$$i; then \
621 echo "Creating directory $$i"; \
622 $(INSTALL) -d -m $(DIRMODE) $(DESTDIR)$$i; \
626 $(INSTALL_DATA) $(srcdir)/Misc/python.man \
627 $(DESTDIR)$(MANDIR)/man1/python.1
629 # Install the library
630 PLATDIR= plat-$(MACHDEP)
631 EXTRAPLATDIR= @EXTRAPLATDIR@
632 EXTRAMACHDEPPATH=@EXTRAMACHDEPPATH@
633 MACHDEPS= $(PLATDIR) $(EXTRAPLATDIR)
634 XMLLIBSUBDIRS= xml xml/dom xml/parsers xml/sax
635 PLATMACDIRS= plat-mac plat-mac/Carbon plat-mac/lib-scriptpackages \
636 plat-mac/lib-scriptpackages/_builtinSuites \
637 plat-mac/lib-scriptpackages/CodeWarrior \
638 plat-mac/lib-scriptpackages/Explorer \
639 plat-mac/lib-scriptpackages/Finder \
640 plat-mac/lib-scriptpackages/Netscape \
641 plat-mac/lib-scriptpackages/StdSuites \
642 plat-mac/lib-scriptpackages/SystemEvents \
643 plat-mac/lib-scriptpackages/Terminal
644 PLATMACPATH=:plat-mac:plat-mac/lib-scriptpackages
645 LIBSUBDIRS= lib-old lib-tk site-packages test test/output test/data \
646 encodings email email/test email/test/data compiler hotshot \
647 logging bsddb bsddb/test csv idlelib idlelib/Icons \
648 distutils distutils/command $(XMLLIBSUBDIRS) curses $(MACHDEPS)
649 libinstall: $(BUILDPYTHON) $(srcdir)/Lib/$(PLATDIR)
650 @for i in $(SCRIPTDIR) $(LIBDEST); \
652 if test ! -d $(DESTDIR)$$i; then \
653 echo "Creating directory $$i"; \
654 $(INSTALL) -d -m $(DIRMODE) $(DESTDIR)$$i; \
658 @for d in $(LIBSUBDIRS); \
660 a=$(srcdir)/Lib/$$d; \
661 if test ! -d $$a; then continue; else true; fi; \
663 if test ! -d $(DESTDIR)$$b; then \
664 echo "Creating directory $$b"; \
665 $(INSTALL) -d -m $(DIRMODE) $(DESTDIR)$$b; \
669 @for i in $(srcdir)/Lib/*.py $(srcdir)/Lib/*.doc; \
671 if test -x $$i; then \
672 $(INSTALL_SCRIPT) $$i $(DESTDIR)$(LIBDEST); \
673 echo $(INSTALL_SCRIPT) $$i $(LIBDEST); \
675 $(INSTALL_DATA) $$i $(DESTDIR)$(LIBDEST); \
676 echo $(INSTALL_DATA) $$i $(LIBDEST); \
679 @for d in $(LIBSUBDIRS); \
681 a=$(srcdir)/Lib/$$d; \
682 if test ! -d $$a; then continue; else true; fi; \
692 if test -d $$i; then continue; fi; \
693 if test -x $$i; then \
694 echo $(INSTALL_SCRIPT) $$i $$b; \
695 $(INSTALL_SCRIPT) $$i $(DESTDIR)$$b; \
697 echo $(INSTALL_DATA) $$i $$b; \
698 $(INSTALL_DATA) $$i $(DESTDIR)$$b; \
703 $(INSTALL_DATA) $(srcdir)/LICENSE $(DESTDIR)$(LIBDEST)/LICENSE.txt
704 PYTHONPATH=$(DESTDIR)$(LIBDEST) $(RUNSHARED) \
705 ./$(BUILDPYTHON) -Wi -tt $(DESTDIR)$(LIBDEST)/compileall.py \
707 -x 'badsyntax|site-packages' $(DESTDIR)$(LIBDEST)
708 PYTHONPATH=$(DESTDIR)$(LIBDEST) $(RUNSHARED) \
709 ./$(BUILDPYTHON) -Wi -tt -O $(DESTDIR)$(LIBDEST)/compileall.py \
711 -x 'badsyntax|site-packages' $(DESTDIR)$(LIBDEST)
712 PYTHONPATH=$(DESTDIR)$(LIBDEST) $(RUNSHARED) \
713 ./$(BUILDPYTHON) -Wi -t $(DESTDIR)$(LIBDEST)/compileall.py \
714 -d $(LIBDEST)/site-packages -f \
715 -x badsyntax $(DESTDIR)$(LIBDEST)/site-packages
716 PYTHONPATH=$(DESTDIR)$(LIBDEST) $(RUNSHARED) \
717 ./$(BUILDPYTHON) -Wi -t -O $(DESTDIR)$(LIBDEST)/compileall.py \
718 -d $(LIBDEST)/site-packages -f \
719 -x badsyntax $(DESTDIR)$(LIBDEST)/site-packages
721 # Create the PLATDIR source directory, if one wasn't distributed..
722 $(srcdir)/Lib/$(PLATDIR):
723 mkdir $(srcdir)/Lib/$(PLATDIR)
724 cp $(srcdir)/Lib/plat-generic/regen $(srcdir)/Lib/$(PLATDIR)/regen
725 export PATH; PATH="`pwd`:$$PATH"; \
726 export PYTHONPATH; PYTHONPATH="`pwd`/Lib"; \
727 export DYLD_FRAMEWORK_PATH; DYLD_FRAMEWORK_PATH="`pwd`"; \
728 export EXE; EXE="$(BUILDEXE)"; \
729 cd $(srcdir)/Lib/$(PLATDIR); ./regen
731 # Install the include files
732 INCLDIRSTOMAKE=$(INCLUDEDIR) $(CONFINCLUDEDIR) $(INCLUDEPY) $(CONFINCLUDEPY)
734 @for i in $(INCLDIRSTOMAKE); \
736 if test ! -d $(DESTDIR)$$i; then \
737 echo "Creating directory $$i"; \
738 $(INSTALL) -d -m $(DIRMODE) $(DESTDIR)$$i; \
742 @for i in $(srcdir)/Include/*.h; \
744 echo $(INSTALL_DATA) $$i $(INCLUDEPY); \
745 $(INSTALL_DATA) $$i $(DESTDIR)$(INCLUDEPY); \
747 $(INSTALL_DATA) pyconfig.h $(DESTDIR)$(CONFINCLUDEPY)/pyconfig.h
749 # Install the library and miscellaneous stuff needed for extending/embedding
750 # This goes into $(exec_prefix)
751 LIBPL= $(LIBP)/config
753 @for i in $(LIBDIR) $(LIBP) $(LIBPL); \
755 if test ! -d $(DESTDIR)$$i; then \
756 echo "Creating directory $$i"; \
757 $(INSTALL) -d -m $(DIRMODE) $(DESTDIR)$$i; \
761 @if test -d $(LIBRARY); then :; else \
762 if test "$(PYTHONFRAMEWORKDIR)" = no-framework; then \
763 if test "$(SO)" = .dll; then \
764 $(INSTALL_DATA) $(LDLIBRARY) $(DESTDIR)$(LIBPL) ; \
766 $(INSTALL_DATA) $(LIBRARY) $(DESTDIR)$(LIBPL)/$(LIBRARY) ; \
767 $(RANLIB) $(DESTDIR)$(LIBPL)/$(LIBRARY) ; \
770 echo Skip install of $(LIBRARY) - use make frameworkinstall; \
773 $(INSTALL_DATA) Modules/config.c $(DESTDIR)$(LIBPL)/config.c
774 $(INSTALL_DATA) Modules/$(MAINOBJ) $(DESTDIR)$(LIBPL)/$(MAINOBJ)
775 $(INSTALL_DATA) $(srcdir)/Modules/config.c.in $(DESTDIR)$(LIBPL)/config.c.in
776 $(INSTALL_DATA) Makefile $(DESTDIR)$(LIBPL)/Makefile
777 $(INSTALL_DATA) Modules/Setup $(DESTDIR)$(LIBPL)/Setup
778 $(INSTALL_DATA) Modules/Setup.local $(DESTDIR)$(LIBPL)/Setup.local
779 $(INSTALL_DATA) Modules/Setup.config $(DESTDIR)$(LIBPL)/Setup.config
780 $(INSTALL_SCRIPT) $(srcdir)/Modules/makesetup $(DESTDIR)$(LIBPL)/makesetup
781 $(INSTALL_SCRIPT) $(srcdir)/install-sh $(DESTDIR)$(LIBPL)/install-sh
782 @if [ -s Modules/python.exp -a \
783 "`echo $(MACHDEP) | sed 's/^\(...\).*/\1/'`" = "aix" ]; then \
784 echo; echo "Installing support files for building shared extension modules on AIX:"; \
785 $(INSTALL_DATA) Modules/python.exp \
786 $(DESTDIR)$(LIBPL)/python.exp; \
787 echo; echo "$(LIBPL)/python.exp"; \
788 $(INSTALL_SCRIPT) $(srcdir)/Modules/makexp_aix \
789 $(DESTDIR)$(LIBPL)/makexp_aix; \
790 echo "$(LIBPL)/makexp_aix"; \
791 $(INSTALL_SCRIPT) $(srcdir)/Modules/ld_so_aix \
792 $(DESTDIR)$(LIBPL)/ld_so_aix; \
793 echo "$(LIBPL)/ld_so_aix"; \
794 echo; echo "See Misc/AIX-NOTES for details."; \
797 @case "$(MACHDEP)" in beos*) \
798 echo; echo "Installing support files for building shared extension modules on BeOS:"; \
799 $(INSTALL_DATA) Misc/BeOS-NOTES $(DESTDIR)$(LIBPL)/README; \
800 echo; echo "$(LIBPL)/README"; \
801 $(INSTALL_SCRIPT) Modules/ar_beos $(DESTDIR)$(LIBPL)/ar_beos; \
802 echo "$(LIBPL)/ar_beos"; \
803 $(INSTALL_SCRIPT) Modules/ld_so_beos $(DESTDIR)$(LIBPL)/ld_so_beos; \
804 echo "$(LIBPL)/ld_so_beos"; \
805 echo; echo "See Misc/BeOS-NOTES for details."; \
809 # Install the dynamically loadable modules
810 # This goes into $(exec_prefix)
812 $(RUNSHARED) ./$(BUILDPYTHON) -E $(srcdir)/setup.py install \
814 --install-scripts=$(BINDIR) \
815 --install-platlib=$(DESTSHARED) \
818 # Here are a couple of targets for MacOSX again, to install a full
819 # framework-based Python. frameworkinstall installs everything, the
820 # subtargets install specific parts. Much of the actual work is offloaded to
821 # the Makefile in Mac/OSX
823 frameworkinstall: frameworkinstallframework \
824 frameworkinstallapps frameworkinstallunixtools
826 # On install, we re-make the framework
827 # structure in the install location, /Library/Frameworks/ or the argument to
828 # --enable-framework. If --enable-framework has been specified then we have
829 # automatically set prefix to the location deep down in the framework, so we
830 # only have to cater for the structural bits of the framework.
832 frameworkinstallframework: frameworkinstallstructure install frameworkinstallmaclib
834 frameworkinstallstructure: $(LDLIBRARY)
835 @if test "$(PYTHONFRAMEWORKDIR)" = no-framework; then \
836 echo Not configured with --enable-framework; \
840 @for i in $(prefix)/Resources/English.lproj $(prefix)/lib; do\
841 if test ! -d $(DESTDIR)$$i; then \
842 echo "Creating directory $(DESTDIR)$$i"; \
843 $(INSTALL) -d -m $(DIRMODE) $(DESTDIR)$$i; \
847 $(LN) -fsn include/python$(VERSION) $(DESTDIR)$(prefix)/Headers
848 $(INSTALL_DATA) $(RESSRCDIR)/Info.plist $(DESTDIR)$(prefix)/Resources/Info.plist
849 $(INSTALL_DATA) $(RESSRCDIR)/version.plist $(DESTDIR)$(prefix)/Resources/version.plist
850 $(INSTALL_DATA) $(RESSRCDIR)/English.lproj/InfoPlist.strings \
851 $(DESTDIR)$(prefix)/Resources/English.lproj/InfoPlist.strings
852 $(LN) -fsn $(VERSION) $(DESTDIR)$(PYTHONFRAMEWORKINSTALLDIR)/Versions/Current
853 $(LN) -fsn Versions/Current/Python $(DESTDIR)$(PYTHONFRAMEWORKINSTALLDIR)/Python
854 $(LN) -fsn Versions/Current/Headers $(DESTDIR)$(PYTHONFRAMEWORKINSTALLDIR)/Headers
855 $(LN) -fsn Versions/Current/Resources $(DESTDIR)$(PYTHONFRAMEWORKINSTALLDIR)/Resources
856 $(INSTALL_SHARED) $(LDLIBRARY) $(DESTDIR)$(PYTHONFRAMEWORKPREFIX)/$(LDLIBRARY)
858 # This installs Mac/Lib into the framework
859 frameworkinstallmaclib:
860 $(MAKE) -f $(srcdir)/Mac/OSX/Makefile installmacsubtree \
861 $(RUNSHARED) BUILDPYTHON=./$(BUILDPYTHON) DIRMODE=$(DIRMODE) FILEMODE=$(FILEMODE) \
862 srcdir=$(srcdir) builddir=. prefix=$(prefix) LIBDEST=$(LIBDEST) \
865 # This installs the IDE, the Launcher and other apps into /Applications
866 frameworkinstallapps:
867 $(MAKE) -f $(srcdir)/Mac/OSX/Makefile installapps \
868 $(RUNSHARED) BUILDPYTHON=./$(BUILDPYTHON) DIRMODE=$(DIRMODE) FILEMODE=$(FILEMODE) \
869 srcdir=$(srcdir) builddir=. DESTDIR=$(DESTDIR)
871 # This install the unix python and pythonw tools in /usr/local/bin
872 frameworkinstallunixtools:
873 $(MAKE) -f $(srcdir)/Mac/OSX/Makefile installunixtools \
874 DIRMODE=$(DIRMODE) FILEMODE=$(FILEMODE) \
875 srcdir=$(srcdir) builddir=. DESTDIR=$(DESTDIR)
877 # This installs the Demos and Tools into the applications directory.
878 # It is not part of a normal frameworkinstall
879 frameworkinstallextras:
880 $(MAKE) -f $(srcdir)/Mac/OSX/Makefile installextras \
881 $(RUNSHARED) BUILDPYTHON=./$(BUILDPYTHON) DIRMODE=$(DIRMODE) FILEMODE=$(FILEMODE) \
882 srcdir=$(srcdir) builddir=. DESTDIR=$(DESTDIR)
884 # This installs a few of the useful scripts in Tools/scripts
886 SRCDIR=$(srcdir) $(RUNSHARED) \
887 ./$(BUILDPYTHON) $(srcdir)/Tools/scripts/setup.py install \
889 --install-scripts=$(BINDIR) \
892 # Build the toplevel Makefile
893 Makefile.pre: Makefile.pre.in config.status
894 CONFIG_FILES=Makefile.pre CONFIG_HEADERS= $(SHELL) config.status
895 $(MAKE) -f Makefile.pre Makefile
897 # Run the configure script.
898 config.status: $(srcdir)/configure
899 $(SHELL) $(srcdir)/configure $(CONFIG_ARGS)
901 .PRECIOUS: config.status $(BUILDPYTHON) Makefile Makefile.pre
903 # Some make's put the object file in the current directory
905 $(CC) -c $(PY_CFLAGS) -o $@ $<
907 # Rerun configure with the same options as it was run last time,
908 # provided the config.status script exists
910 $(SHELL) config.status --recheck
911 $(SHELL) config.status
913 # Rebuild the configure script from configure.in; also rebuild pyconfig.h.in
915 (cd $(srcdir); autoconf)
916 (cd $(srcdir); autoheader)
918 # Create a tags file for vi
921 ctags -w -t Include/*.h; \
922 for i in $(SRCDIRS); do ctags -w -t -a $$i/*.[ch]; \
926 # Create a tags file for GNU Emacs
930 for i in $(SRCDIRS); do etags -a $$i/*.[ch]; done
932 # Sanitation targets -- clean leaves libraries, executables and tags
933 # files, which clobber removes those as well
936 find . -name '*.o' -exec rm -f {} ';'
937 find . -name '*.s[ol]' -exec rm -f {} ';'
938 find $(srcdir) -name '*.py[co]' -exec rm -f {} ';'
941 -rm -f $(BUILDPYTHON) $(PGEN) $(LIBRARY) $(LDLIBRARY) $(DLLLIBRARY) \
943 config.cache config.log pyconfig.h Modules/config.c
944 -rm -rf build platform
945 -rm -rf $(PYTHONFRAMEWORKDIR)
947 # Make things extra clean, before making a distribution:
948 # remove all generated files, even Makefile[.pre]
950 -rm -f core Makefile Makefile.pre buildno config.status \
951 Modules/Setup Modules/Setup.local Modules/Setup.config
952 find $(srcdir) '(' -name '*.fdc' -o -name '*~' \
953 -o -name '[@,#]*' -o -name '*.old' \
954 -o -name '*.orig' -o -name '*.rej' \
955 -o -name '*.bak' ')' \
958 # Check for smelly exported symbols (not starting with Py/_Py)
961 sed -n "/ [TDB] /s/.* //p" | grep -v "^_*Py" | sort -u; \
963 # Find files with funny names
965 find $(DISTDIRS) -type d \
982 -o -name Repository \
988 -o -name .cvsignore \
994 Python/thread.o: @THREADHEADERS@
996 # Declare targets that aren't real files
997 .PHONY: all sharedmods oldsharedmods test quicktest memtest
998 .PHONY: install altinstall oldsharedinstall bininstall altbininstall
999 .PHONY: maninstall libinstall inclinstall libainstall sharedinstall
1000 .PHONY: frameworkinstall frameworkinstallframework frameworkinstallstructure
1001 .PHONY: frameworkinstallmaclib frameworkinstallapps frameworkinstallunixtools
1002 .PHONY: recheck autoconf clean clobber distclean smelly funny
1004 # IF YOU PUT ANYTHING HERE IT WILL GO AWAY