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) $(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)
518 TESTPROG= $(srcdir)/Lib/test/regrtest.py
519 TESTPYTHON= $(RUNSHARED) ./$(BUILDPYTHON) -E -tt
521 -find $(srcdir)/Lib -name '*.py[co]' -print | xargs rm -f
522 -$(TESTPYTHON) $(TESTPROG) $(TESTOPTS)
523 $(TESTPYTHON) $(TESTPROG) $(TESTOPTS)
525 QUICKTESTOPTS= $(TESTOPTS) -x test_thread test_signal test_strftime \
526 test_unicodedata test_re test_sre test_select test_poll \
527 test_linuxaudiodev test_struct test_sunaudiodev test_zlib
528 quicktest: all platform
529 -find $(srcdir)/Lib -name '*.py[co]' -print | xargs rm -f
530 -$(TESTPYTHON) $(TESTPROG) $(QUICKTESTOPTS)
531 $(TESTPYTHON) $(TESTPROG) $(QUICKTESTOPTS)
533 MEMTESTOPTS= $(QUICKTESTOPTS) -x test_dl test___all__ test_fork1 \
535 memtest: all platform
536 -rm -f $(srcdir)/Lib/test/*.py[co]
537 -$(TESTPYTHON) $(TESTPROG) $(MEMTESTOPTS)
538 $(TESTPYTHON) $(TESTPROG) $(MEMTESTOPTS)
541 install: altinstall bininstall maninstall idleinstall
543 # Install almost everything without disturbing previous versions
544 altinstall: altbininstall libinstall inclinstall libainstall \
545 sharedinstall oldsharedinstall
547 # Install shared libraries enabled by Setup
548 DESTDIRS= $(exec_prefix) $(LIBDIR) $(BINLIBDEST) $(DESTSHARED)
550 oldsharedinstall: $(DESTSHARED) $(SHAREDMODS)
551 @for i in X $(SHAREDMODS); do \
552 if test $$i != X; then \
553 echo $(INSTALL_SHARED) $$i $(DESTSHARED)/`basename $$i`; \
554 $(INSTALL_SHARED) $$i $(DESTSHARED)/`basename $$i`; \
559 @for i in $(DESTDIRS); \
561 if test ! -d $$i; then \
562 echo "Creating directory $$i"; \
563 $(INSTALL) -d -m $(DIRMODE) $$i; \
569 # Install the interpreter (by creating a hard link to python$(VERSION))
570 bininstall: altbininstall
571 -if test -f $(BINDIR)/$(PYTHON) -o -h $(BINDIR)/$(PYTHON); \
572 then rm -f $(BINDIR)/$(PYTHON); \
575 (cd $(BINDIR); $(LN) python$(VERSION)$(EXE) $(PYTHON))
577 # Install the interpreter with $(VERSION) affixed
578 # This goes into $(exec_prefix)
579 altbininstall: $(BUILDPYTHON)
580 @if test "$(PYTHONFRAMEWORKDIR)" != no-framework; then \
581 if test ! -f $(PYTHONFRAMEWORKINSTALLDIR)/Versions/Current/Resources/Info.plist; then \
582 echo 'Framework build: use "make frameworkinstall" in stead of "make install"'; \
586 @for i in $(BINDIR) $(LIBDIR); \
588 if test ! -d $$i; then \
589 echo "Creating directory $$i"; \
590 $(INSTALL) -d -m $(DIRMODE) $$i; \
594 $(INSTALL_PROGRAM) $(BUILDPYTHON) $(BINDIR)/python$(VERSION)$(EXE)
595 if test -f libpython$(VERSION)$(SO); then \
596 if test "$(SO)" = .dll; then \
597 $(INSTALL_SHARED) libpython$(VERSION)$(SO) $(BINDIR); \
599 $(INSTALL_SHARED) libpython$(VERSION)$(SO) $(LIBDIR)/$(INSTSONAME); \
604 # Install the manual page
606 @for i in $(MANDIR) $(MANDIR)/man1; \
608 if test ! -d $$i; then \
609 echo "Creating directory $$i"; \
610 $(INSTALL) -d -m $(DIRMODE) $$i; \
614 $(INSTALL_DATA) $(srcdir)/Misc/python.man \
615 $(MANDIR)/man1/python.1
617 # Install the library
618 PLATDIR= plat-$(MACHDEP)
619 EXTRAPLATDIR= @EXTRAPLATDIR@
620 EXTRAMACHDEPPATH=@EXTRAMACHDEPPATH@
621 MACHDEPS= $(PLATDIR) $(EXTRAPLATDIR)
622 XMLLIBSUBDIRS= xml xml/dom xml/parsers xml/sax
623 PLATMACDIRS= plat-mac plat-mac/Carbon plat-mac/lib-scriptpackages \
624 plat-mac/lib-scriptpackages/_builtinSuites \
625 plat-mac/lib-scriptpackages/CodeWarrior \
626 plat-mac/lib-scriptpackages/Explorer \
627 plat-mac/lib-scriptpackages/Finder \
628 plat-mac/lib-scriptpackages/Netscape \
629 plat-mac/lib-scriptpackages/StdSuites \
630 plat-mac/lib-scriptpackages/SystemEvents \
631 plat-mac/lib-scriptpackages/Terminal
632 PLATMACPATH=:plat-mac:plat-mac/lib-scriptpackages
633 LIBSUBDIRS= lib-old lib-tk site-packages test test/output test/data \
634 encodings email email/test email/test/data compiler hotshot \
635 logging bsddb bsddb/test csv \
636 distutils distutils/command $(XMLLIBSUBDIRS) curses $(MACHDEPS)
637 libinstall: $(BUILDPYTHON) $(srcdir)/Lib/$(PLATDIR)
638 @for i in $(SCRIPTDIR) $(LIBDEST); \
640 if test ! -d $$i; then \
641 echo "Creating directory $$i"; \
642 $(INSTALL) -d -m $(DIRMODE) $$i; \
646 @for d in $(LIBSUBDIRS); \
648 a=$(srcdir)/Lib/$$d; \
649 if test ! -d $$a; then continue; else true; fi; \
651 if test ! -d $$b; then \
652 echo "Creating directory $$b"; \
653 $(INSTALL) -d -m $(DIRMODE) $$b; \
657 @for i in $(srcdir)/Lib/*.py $(srcdir)/Lib/*.doc; \
659 if test -x $$i; then \
660 $(INSTALL_SCRIPT) $$i $(LIBDEST); \
661 echo $(INSTALL_SCRIPT) $$i $(LIBDEST); \
663 $(INSTALL_DATA) $$i $(LIBDEST); \
664 echo $(INSTALL_DATA) $$i $(LIBDEST); \
667 @for d in $(LIBSUBDIRS); \
669 a=$(srcdir)/Lib/$$d; \
670 if test ! -d $$a; then continue; else true; fi; \
680 if test -d $$i; then continue; fi; \
681 if test -x $$i; then \
682 echo $(INSTALL_SCRIPT) $$i $$b; \
683 $(INSTALL_SCRIPT) $$i $$b; \
685 echo $(INSTALL_DATA) $$i $$b; \
686 $(INSTALL_DATA) $$i $$b; \
691 $(INSTALL_DATA) $(srcdir)/LICENSE $(LIBDEST)/LICENSE.txt
692 PYTHONPATH=$(LIBDEST) $(RUNSHARED) \
693 ./$(BUILDPYTHON) -Wi -tt $(LIBDEST)/compileall.py \
694 -x 'badsyntax|site-packages' $(LIBDEST)
695 PYTHONPATH=$(LIBDEST) $(RUNSHARED) \
696 ./$(BUILDPYTHON) -Wi -tt -O $(LIBDEST)/compileall.py \
697 -x 'badsyntax|site-packages' $(LIBDEST)
698 PYTHONPATH=$(LIBDEST) $(RUNSHARED) \
699 ./$(BUILDPYTHON) -Wi -t $(LIBDEST)/compileall.py \
700 -x badsyntax $(LIBDEST)/site-packages
701 PYTHONPATH=$(LIBDEST) $(RUNSHARED) \
702 ./$(BUILDPYTHON) -Wi -t -O $(LIBDEST)/compileall.py \
703 -x badsyntax $(LIBDEST)/site-packages
705 # Create the PLATDIR source directory, if one wasn't distributed..
706 $(srcdir)/Lib/$(PLATDIR):
707 mkdir $(srcdir)/Lib/$(PLATDIR)
708 cp $(srcdir)/Lib/plat-generic/regen $(srcdir)/Lib/$(PLATDIR)/regen
709 export PATH; PATH="`pwd`:$$PATH"; \
710 export PYTHONPATH; PYTHONPATH="`pwd`/Lib"; \
711 export DYLD_FRAMEWORK_PATH; DYLD_FRAMEWORK_PATH="`pwd`"; \
712 export EXE; EXE="$(BUILDEXE)"; \
713 cd $(srcdir)/Lib/$(PLATDIR); ./regen
715 # Install the include files
716 INCLDIRSTOMAKE=$(INCLUDEDIR) $(CONFINCLUDEDIR) $(INCLUDEPY) $(CONFINCLUDEPY)
718 @for i in $(INCLDIRSTOMAKE); \
720 if test ! -d $$i; then \
721 echo "Creating directory $$i"; \
722 $(INSTALL) -d -m $(DIRMODE) $$i; \
726 @for i in $(srcdir)/Include/*.h; \
728 echo $(INSTALL_DATA) $$i $(INCLUDEPY); \
729 $(INSTALL_DATA) $$i $(INCLUDEPY); \
731 $(INSTALL_DATA) pyconfig.h $(CONFINCLUDEPY)/pyconfig.h
733 # Install the library and miscellaneous stuff needed for extending/embedding
734 # This goes into $(exec_prefix)
735 LIBPL= $(LIBP)/config
737 @for i in $(LIBDIR) $(LIBP) $(LIBPL); \
739 if test ! -d $$i; then \
740 echo "Creating directory $$i"; \
741 $(INSTALL) -d -m $(DIRMODE) $$i; \
745 @if test -d $(LIBRARY); then :; else \
746 if test "$(PYTHONFRAMEWORKDIR)" = no-framework; then \
747 if test "$(SO)" = .dll; then \
748 $(INSTALL_DATA) $(LDLIBRARY) $(LIBPL) ; \
750 $(INSTALL_DATA) $(LIBRARY) $(LIBPL)/$(LIBRARY) ; \
751 $(RANLIB) $(LIBPL)/$(LIBRARY) ; \
754 echo Skip install of $(LIBRARY) - use make frameworkinstall; \
757 $(INSTALL_DATA) Modules/config.c $(LIBPL)/config.c
758 $(INSTALL_DATA) Modules/$(MAINOBJ) $(LIBPL)/$(MAINOBJ)
759 $(INSTALL_DATA) $(srcdir)/Modules/config.c.in $(LIBPL)/config.c.in
760 $(INSTALL_DATA) Makefile $(LIBPL)/Makefile
761 $(INSTALL_DATA) Modules/Setup $(LIBPL)/Setup
762 $(INSTALL_DATA) Modules/Setup.local $(LIBPL)/Setup.local
763 $(INSTALL_DATA) Modules/Setup.config $(LIBPL)/Setup.config
764 $(INSTALL_SCRIPT) $(srcdir)/Modules/makesetup $(LIBPL)/makesetup
765 $(INSTALL_SCRIPT) $(srcdir)/install-sh $(LIBPL)/install-sh
766 @if [ -s Modules/python.exp -a \
767 "`echo $(MACHDEP) | sed 's/^\(...\).*/\1/'`" = "aix" ]; then \
768 echo; echo "Installing support files for building shared extension modules on AIX:"; \
769 $(INSTALL_DATA) Modules/python.exp \
770 $(LIBPL)/python.exp; \
771 echo; echo "$(LIBPL)/python.exp"; \
772 $(INSTALL_SCRIPT) $(srcdir)/Modules/makexp_aix \
773 $(LIBPL)/makexp_aix; \
774 echo "$(LIBPL)/makexp_aix"; \
775 $(INSTALL_SCRIPT) $(srcdir)/Modules/ld_so_aix \
776 $(LIBPL)/ld_so_aix; \
777 echo "$(LIBPL)/ld_so_aix"; \
778 echo; echo "See Misc/AIX-NOTES for details."; \
781 @case "$(MACHDEP)" in beos*) \
782 echo; echo "Installing support files for building shared extension modules on BeOS:"; \
783 $(INSTALL_DATA) Misc/BeOS-NOTES $(LIBPL)/README; \
784 echo; echo "$(LIBPL)/README"; \
785 $(INSTALL_SCRIPT) Modules/ar_beos $(LIBPL)/ar_beos; \
786 echo "$(LIBPL)/ar_beos"; \
787 $(INSTALL_SCRIPT) Modules/ld_so_beos $(LIBPL)/ld_so_beos; \
788 echo "$(LIBPL)/ld_so_beos"; \
789 echo; echo "See Misc/BeOS-NOTES for details."; \
793 # Install the dynamically loadable modules
794 # This goes into $(exec_prefix)
796 $(RUNSHARED) ./$(BUILDPYTHON) -E $(srcdir)/setup.py install \
798 --install-scripts=$(BINDIR) \
799 --install-platlib=$(DESTSHARED)
801 # Here are a couple of targets for MacOSX again, to install a full
802 # framework-based Python. frameworkinstall installs everything, the
803 # subtargets install specific parts. Much of the actual work is offloaded to
804 # the Makefile in Mac/OSX
806 frameworkinstall: frameworkinstallframework \
807 frameworkinstallapps frameworkinstallunixtools
809 # On install, we re-make the framework
810 # structure in the install location, /Library/Frameworks/ or the argument to
811 # --enable-framework. If --enable-framework has been specified then we have
812 # automatically set prefix to the location deep down in the framework, so we
813 # only have to cater for the structural bits of the framework.
815 frameworkinstallframework: frameworkinstallstructure install frameworkinstallmaclib
817 frameworkinstallstructure: $(LDLIBRARY)
818 @if test "$(PYTHONFRAMEWORKDIR)" = no-framework; then \
819 echo Not configured with --enable-framework; \
823 @for i in $(prefix)/Resources/English.lproj $(prefix)/lib; do\
824 if test ! -d $$i; then \
825 echo "Creating directory $$i"; \
826 $(INSTALL) -d -m $(DIRMODE) $$i; \
830 $(LN) -fsn include/python$(VERSION) $(prefix)/Headers
831 $(INSTALL_DATA) $(RESSRCDIR)/Info.plist $(prefix)/Resources/Info.plist
832 $(INSTALL_DATA) $(RESSRCDIR)/version.plist $(prefix)/Resources/version.plist
833 $(INSTALL_DATA) $(RESSRCDIR)/English.lproj/InfoPlist.strings \
834 $(prefix)/Resources/English.lproj/InfoPlist.strings
835 $(LN) -fsn $(VERSION) $(PYTHONFRAMEWORKINSTALLDIR)/Versions/Current
836 $(LN) -fsn Versions/Current/Python $(PYTHONFRAMEWORKINSTALLDIR)/Python
837 $(LN) -fsn Versions/Current/Headers $(PYTHONFRAMEWORKINSTALLDIR)/Headers
838 $(LN) -fsn Versions/Current/Resources $(PYTHONFRAMEWORKINSTALLDIR)/Resources
839 $(INSTALL_DATA) $(LDLIBRARY) $(PYTHONFRAMEWORKPREFIX)/$(LDLIBRARY)
841 # This installs Mac/Lib into the framework
842 frameworkinstallmaclib:
843 $(MAKE) -f $(srcdir)/Mac/OSX/Makefile installmacsubtree \
844 BUILDPYTHON=./$(BUILDPYTHON) \
845 srcdir=$(srcdir) builddir=. prefix=$(prefix) LIBDEST=$(LIBDEST)
847 # This installs the IDE, the Launcher and other apps into /Applications
848 frameworkinstallapps:
849 $(MAKE) -f $(srcdir)/Mac/OSX/Makefile installapps \
850 BUILDPYTHON=./$(BUILDPYTHON) \
851 srcdir=$(srcdir) builddir=. dstroot=$(PYTHONFRAMEWORKPREFIX)/../..
853 # This install the unix python and pythonw tools in /usr/local/bin
854 frameworkinstallunixtools:
855 $(MAKE) -f $(srcdir)/Mac/OSX/Makefile installunixtools \
856 srcdir=$(srcdir) builddir=. dstroot=$(PYTHONFRAMEWORKPREFIX)/../..
860 SRCDIR=$(srcdir) $(RUNSHARED) \
861 ./$(BUILDPYTHON) $(srcdir)/Tools/idle/setup.py install \
864 --install-scripts=$(BINDIR) \
865 --install-platlib=$(DESTSHARED)
867 # This installs a few of the useful scripts in Tools/scripts
869 SRCDIR=$(srcdir) $(RUNSHARED) \
870 ./$(BUILDPYTHON) $(srcdir)/Tools/scripts/setup.py install \
872 --install-scripts=$(BINDIR)
874 # Build the toplevel Makefile
875 Makefile.pre: Makefile.pre.in config.status
876 CONFIG_FILES=Makefile.pre CONFIG_HEADERS= $(SHELL) config.status
877 $(MAKE) -f Makefile.pre Makefile
879 # Run the configure script.
880 config.status: $(srcdir)/configure
881 $(SHELL) $(srcdir)/configure $(CONFIG_ARGS)
883 .PRECIOUS: config.status $(BUILDPYTHON) Makefile Makefile.pre
885 # Some make's put the object file in the current directory
887 $(CC) -c $(PY_CFLAGS) -o $@ $<
889 # Rerun configure with the same options as it was run last time,
890 # provided the config.status script exists
892 $(SHELL) config.status --recheck
893 $(SHELL) config.status
895 # Rebuild the configure script from configure.in; also rebuild pyconfig.h.in
897 (cd $(srcdir); autoconf)
898 (cd $(srcdir); autoheader)
900 # Create a tags file for vi
903 ctags -w -t Include/*.h; \
904 for i in $(SRCDIRS); do ctags -w -t -a $$i/*.[ch]; \
908 # Create a tags file for GNU Emacs
912 for i in $(SRCDIRS); do etags -a $$i/*.[ch]; done
914 # Sanitation targets -- clean leaves libraries, executables and tags
915 # files, which clobber removes those as well
918 find . -name '*.o' -exec rm -f {} ';'
919 find . -name '*.s[ol]' -exec rm -f {} ';'
920 find $(srcdir) -name '*.py[co]' -exec rm -f {} ';'
923 -rm -f $(BUILDPYTHON) $(PGEN) $(LIBRARY) $(LDLIBRARY) $(DLLLIBRARY) \
925 config.cache config.log pyconfig.h Modules/config.c
926 -rm -rf build platform
927 -rm -rf $(PYTHONFRAMEWORKDIR)
929 # Make things extra clean, before making a distribution:
930 # remove all generated files, even Makefile[.pre]
932 -rm -f core Makefile Makefile.pre buildno config.status \
933 Modules/Setup Modules/Setup.local Modules/Setup.config
934 find $(srcdir) '(' -name '*.fdc' -o -name '*~' \
935 -o -name '[@,#]*' -o -name '*.old' \
936 -o -name '*.orig' -o -name '*.rej' \
937 -o -name '*.bak' ')' \
940 # Check for smelly exported symbols (not starting with Py/_Py)
943 sed -n "/ [TDB] /s/.* //p" | grep -v "^_*Py" | sort -u; \
945 # Find files with funny names
947 find $(DISTDIRS) -type d \
964 -o -name Repository \
970 -o -name .cvsignore \
976 Python/thread.o: @THREADHEADERS@
978 # Declare targets that aren't real files
979 .PHONY: all sharedmods oldsharedmods test quicktest memtest
980 .PHONY: install altinstall oldsharedinstall bininstall altbininstall
981 .PHONY: maninstall libinstall inclinstall libainstall sharedinstall
982 .PHONY: frameworkinstall frameworkinstallframework frameworkinstallstructure
983 .PHONY: frameworkinstallmaclib frameworkinstallapps frameworkinstallunixtools
984 .PHONY: recheck autoconf clean clobber distclean smelly funny
986 # IF YOU PUT ANYTHING HERE IT WILL GO AWAY