Remove footnote from versionchanged as it upsets LaTeX.
[python.git] / Makefile.pre.in
blob4edc784087759e4e7560a519051b470df0136df7
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:
9 #       ./configure
10 #       make
11 #       make test
12 #       make install
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
17 # additional details.
19 # See also the section "Build instructions" in the README file.
21 # === Variables set by makesetup ===
23 MODOBJS=        _MODOBJS_
24 MODLIBS=        _MODLIBS_
26 # === Variables set by configure
27 VERSION=        @VERSION@
28 srcdir=         @srcdir@
29 VPATH=          @srcdir@
31 CC=             @CC@
32 CXX=            @CXX@
33 MAINCC=         @MAINCC@
34 LINKCC=         @LINKCC@
35 AR=             @AR@
36 RANLIB=         @RANLIB@
37 SVNVERSION=     @SVNVERSION@
39 # Shell used by make (some versions default to the login shell, which is bad)
40 SHELL=          /bin/sh
42 # Use this to make a link between python$(VERSION) and python in $(BINDIR)
43 LN=             @LN@
45 # Portable install script (configure doesn't always guess right)
46 INSTALL=        @INSTALL@
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
57 # Compiler options
58 OPT=            @OPT@
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@
65 LDFLAGS=        @LDFLAGS@
66 LDLAST=         @LDLAST@
67 SGI_ABI=        @SGI_ABI@
68 CCSHARED=       @CCSHARED@
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
77 MACHDEP=        @MACHDEP@
79 # Install prefix for architecture-independent files
80 prefix=         @prefix@
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
91 MANDIR=         @mandir@
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
104 SO=             @SO@
105 LDSHARED=       @LDSHARED@
106 BLDSHARED=      @BLDSHARED@
107 DESTSHARED=     $(BINLIBDEST)/lib-dynload
109 # Executable suffix (.exe on Windows and Mac OS X)
110 EXE=            @EXEEXT@
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.
133 DIRMODE=        755
134 EXEMODE=        755
135 FILEMODE=       644
137 # configure script arguments
138 CONFIG_ARGS=    @CONFIG_ARGS@
141 # Subdirectories with code
142 SRCDIRS=        @SRCDIRS@
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)
154 LIBRARY=        @LIBRARY@
155 LDLIBRARY=      @LDLIBRARY@
156 BLDLIBRARY=     @BLDLIBRARY@
157 DLLLIBRARY=     @DLLLIBRARY@
158 LDLIBRARYDIR=   @LDLIBRARYDIR@
159 INSTSONAME=     @INSTSONAME@
162 LIBS=           @LIBS@
163 LIBM=           @LIBM@
164 LIBC=           @LIBC@
165 SYSLIBS=        $(LIBM) $(LIBC)
166 SHLIBS=         @SHLIBS@
168 THREADOBJ=      @THREADOBJ@
169 DLINCLDIR=      @DLINCLDIR@
170 DYNLOADFILE=    @DYNLOADFILE@
171 MACHDEP_OBJS=   @MACHDEP_OBJS@
172 LIBOBJDIR=      Python/
173 LIBOBJS=        @LIBOBJS@
174 UNICODE_OBJS=   @UNICODE_OBJS@
176 PYTHON=         python$(EXE)
177 BUILDPYTHON=    python$(BUILDEXE)
179 # === Definitions added by makesetup ===
182 ##########################################################################
183 # Modules
184 MODULE_OBJS=    \
185                 Modules/config.o \
186                 Modules/getpath.o \
187                 Modules/main.o \
188                 Modules/gcmodule.o
190 # Used of signalmodule.o is not available
191 SIGNAL_OBJS=    @SIGNAL_OBJS@
194 ##########################################################################
195 # Grammar
196 GRAMMAR_H=      $(srcdir)/Include/graminit.h
197 GRAMMAR_C=      $(srcdir)/Python/graminit.c
198 GRAMMAR_INPUT=  $(srcdir)/Grammar/Grammar
201 ##########################################################################
202 # Parser
203 PGEN=           Parser/pgen$(EXE)
205 POBJS=          \
206                 Parser/acceler.o \
207                 Parser/grammar1.o \
208                 Parser/listnode.o \
209                 Parser/node.o \
210                 Parser/parser.o \
211                 Parser/parsetok.o \
212                 Parser/bitset.o \
213                 Parser/metagrammar.o \
214                 Parser/firstsets.o \
215                 Parser/grammar.o \
216                 Parser/pgen.o
218 PARSER_OBJS=    $(POBJS) Parser/myreadline.o Parser/tokenizer.o
220 PGOBJS=         \
221                 Objects/obmalloc.o \
222                 Python/mysnprintf.o \
223                 Parser/tokenizer_pgen.o \
224                 Parser/printgrammar.o \
225                 Parser/pgenmain.o
227 PARSER_HEADERS= \
228                 Parser/parser.h \
229                 Parser/tokenizer.h
231 PGENOBJS=       $(PGENMAIN) $(POBJS) $(PGOBJS)
233 ##########################################################################
234 # AST
235 AST_H_DIR=      $(srcdir)/Include
236 AST_H=          $(AST_H_DIR)/Python-ast.h
237 AST_C_DIR=      $(srcdir)/Python
238 AST_C=          $(AST_C_DIR)/Python-ast.c
239 AST_ASDL=       $(srcdir)/Parser/Python.asdl
241 ASDLGEN_FILES=  $(srcdir)/Parser/asdl.py $(srcdir)/Parser/asdl_c.py
242 # XXX Note that a build now requires Python exist before the build starts
243 ASDLGEN=        $(srcdir)/Parser/asdl_c.py
245 ##########################################################################
246 # Python
247 PYTHON_OBJS=    \
248                 Python/Python-ast.o \
249                 Python/asdl.o \
250                 Python/ast.o \
251                 Python/bltinmodule.o \
252                 Python/ceval.o \
253                 Python/compile.o \
254                 Python/codecs.o \
255                 Python/errors.o \
256                 Python/frozen.o \
257                 Python/frozenmain.o \
258                 Python/future.o \
259                 Python/getargs.o \
260                 Python/getcompiler.o \
261                 Python/getcopyright.o \
262                 Python/getmtime.o \
263                 Python/getplatform.o \
264                 Python/getversion.o \
265                 Python/graminit.o \
266                 Python/import.o \
267                 Python/importdl.o \
268                 Python/marshal.o \
269                 Python/modsupport.o \
270                 Python/mystrtoul.o \
271                 Python/mysnprintf.o \
272                 Python/peephole.o \
273                 Python/pyarena.o \
274                 Python/pyfpe.o \
275                 Python/pystate.o \
276                 Python/pythonrun.o \
277                 Python/structmember.o \
278                 Python/symtable.o \
279                 Python/sysmodule.o \
280                 Python/traceback.o \
281                 Python/getopt.o \
282                 Python/pystrcmp.o \
283                 Python/pystrtod.o \
284                 Python/formatter_unicode.o \
285                 Python/formatter_string.o \
286                 Python/$(DYNLOADFILE) \
287                 $(LIBOBJS) \
288                 $(MACHDEP_OBJS) \
289                 $(THREADOBJ)
292 ##########################################################################
293 # Objects
294 OBJECT_OBJS=    \
295                 Objects/abstract.o \
296                 Objects/boolobject.o \
297                 Objects/bufferobject.o \
298                 Objects/cellobject.o \
299                 Objects/classobject.o \
300                 Objects/cobject.o \
301                 Objects/codeobject.o \
302                 Objects/complexobject.o \
303                 Objects/descrobject.o \
304                 Objects/enumobject.o \
305                 Objects/exceptions.o \
306                 Objects/genobject.o \
307                 Objects/fileobject.o \
308                 Objects/floatobject.o \
309                 Objects/frameobject.o \
310                 Objects/funcobject.o \
311                 Objects/intobject.o \
312                 Objects/iterobject.o \
313                 Objects/listobject.o \
314                 Objects/longobject.o \
315                 Objects/dictobject.o \
316                 Objects/methodobject.o \
317                 Objects/moduleobject.o \
318                 Objects/object.o \
319                 Objects/obmalloc.o \
320                 Objects/rangeobject.o \
321                 Objects/setobject.o \
322                 Objects/sliceobject.o \
323                 Objects/stringobject.o \
324                 Objects/structseq.o \
325                 Objects/tupleobject.o \
326                 Objects/typeobject.o \
327                 Objects/weakrefobject.o \
328                 $(UNICODE_OBJS)
331 ##########################################################################
332 # objects that get linked into the Python library
333 LIBRARY_OBJS=   \
334                 Modules/_typesmodule.o \
335                 Modules/getbuildinfo.o \
336                 $(PARSER_OBJS) \
337                 $(OBJECT_OBJS) \
338                 $(PYTHON_OBJS) \
339                 $(MODULE_OBJS) \
340                 $(SIGNAL_OBJS) \
341                 $(MODOBJS)
343 #########################################################################
344 # Rules
346 # Default target
347 all:            build_all
348 build_all:      $(BUILDPYTHON) oldsharedmods sharedmods
350 # Build the interpreter
351 $(BUILDPYTHON): Modules/python.o $(LIBRARY) $(LDLIBRARY)
352                 $(LINKCC) $(LDFLAGS) $(LINKFORSHARED) -o $@ \
353                         Modules/python.o \
354                         $(BLDLIBRARY) $(LIBS) $(MODLIBS) $(SYSLIBS) $(LDLAST)
356 platform: $(BUILDPYTHON)
357         $(RUNSHARED) ./$(BUILDPYTHON) -E -c 'import sys ; from distutils.util import get_platform ; print get_platform()+"-"+sys.version[0:3]' >platform
360 # Build the shared modules
361 sharedmods: $(BUILDPYTHON)
362         @case $$MAKEFLAGS in \
363         *s*) $(RUNSHARED) CC='$(CC)' LDSHARED='$(BLDSHARED)' OPT='$(OPT)' ./$(BUILDPYTHON) -E $(srcdir)/setup.py -q build;; \
364         *) $(RUNSHARED) CC='$(CC)' LDSHARED='$(BLDSHARED)' OPT='$(OPT)' ./$(BUILDPYTHON) -E $(srcdir)/setup.py build;; \
365         esac
367 # Build static library
368 # avoid long command lines, same as LIBRARY_OBJS
369 $(LIBRARY): $(LIBRARY_OBJS)
370         -rm -f $@
371         $(AR) cr $@ Modules/getbuildinfo.o
372         $(AR) cr $@ Modules/_typesmodule.o
373         $(AR) cr $@ $(PARSER_OBJS)
374         $(AR) cr $@ $(OBJECT_OBJS)
375         $(AR) cr $@ $(PYTHON_OBJS)
376         $(AR) cr $@ $(MODULE_OBJS) $(SIGNAL_OBJS)
377         $(AR) cr $@ $(MODOBJS)
378         $(RANLIB) $@
380 libpython$(VERSION).so: $(LIBRARY_OBJS)
381         if test $(INSTSONAME) != $(LDLIBRARY); then \
382                 $(LDSHARED) -Wl,-h$(INSTSONAME) -o $(INSTSONAME) $(LIBRARY_OBJS) $(SHLIBS) $(LIBC) $(LIBM); \
383                 $(LN) -f $(INSTSONAME) $@; \
384         else\
385                 $(LDSHARED) -o $@ $(LIBRARY_OBJS) $(SHLIBS) $(LIBC) $(LIBM); \
386         fi
388 libpython$(VERSION).sl: $(LIBRARY_OBJS)
389         $(LDSHARED) -o $@ $(LIBRARY_OBJS) $(SHLIBS) $(LIBC) $(LIBM)
391 # This rule is here for OPENSTEP/Rhapsody/MacOSX. It builds a temporary
392 # minimal framework (not including the Lib directory and such) in the current
393 # directory.
394 RESSRCDIR=$(srcdir)/Mac/Resources/framework
395 $(PYTHONFRAMEWORKDIR)/Versions/$(VERSION)/$(PYTHONFRAMEWORK): \
396                 $(LIBRARY) \
397                 $(RESSRCDIR)/Info.plist \
398                 $(RESSRCDIR)/version.plist \
399                 $(RESSRCDIR)/English.lproj/InfoPlist.strings
400         $(INSTALL) -d -m $(DIRMODE) $(PYTHONFRAMEWORKDIR)/Versions/$(VERSION)
401         if test "${UNIVERSALSDK}"; then \
402                 $(CC) -o $(LDLIBRARY) -arch i386 -arch ppc -dynamiclib \
403                         -isysroot "${UNIVERSALSDK}" \
404                         -all_load $(LIBRARY) -Wl,-single_module \
405                         -install_name $(DESTDIR)$(PYTHONFRAMEWORKINSTALLDIR)/Versions/$(VERSION)/Python \
406                         -compatibility_version $(VERSION) \
407                         -current_version $(VERSION); \
408         else \
409                 /usr/bin/libtool -o $(LDLIBRARY) -dynamic $(OTHER_LIBTOOL_OPT) $(LIBRARY) \
410                         @LIBTOOL_CRUFT@ ;\
411         fi
412         $(INSTALL) -d -m $(DIRMODE)  \
413                 $(PYTHONFRAMEWORKDIR)/Versions/$(VERSION)/Resources/English.lproj
414         $(INSTALL_DATA) $(RESSRCDIR)/Info.plist \
415                 $(PYTHONFRAMEWORKDIR)/Versions/$(VERSION)/Resources/Info.plist
416         $(INSTALL_DATA) $(RESSRCDIR)/version.plist \
417                 $(PYTHONFRAMEWORKDIR)/Versions/$(VERSION)/Resources/version.plist
418         $(INSTALL_DATA) $(RESSRCDIR)/English.lproj/InfoPlist.strings \
419                 $(PYTHONFRAMEWORKDIR)/Versions/$(VERSION)/Resources/English.lproj/InfoPlist.strings
420         $(LN) -fsn $(VERSION) $(PYTHONFRAMEWORKDIR)/Versions/Current
421         $(LN) -fsn Versions/Current/$(PYTHONFRAMEWORK) $(PYTHONFRAMEWORKDIR)/$(PYTHONFRAMEWORK)
422         $(LN) -fsn Versions/Current/Headers $(PYTHONFRAMEWORKDIR)/Headers
423         $(LN) -fsn Versions/Current/Resources $(PYTHONFRAMEWORKDIR)/Resources
425 # This rule builds the Cygwin Python DLL and import library if configured
426 # for a shared core library; otherwise, this rule is a noop.
427 $(DLLLIBRARY) libpython$(VERSION).dll.a: $(LIBRARY_OBJS)
428         if test -n "$(DLLLIBRARY)"; then \
429                 $(LDSHARED) -Wl,--out-implib=$@ -o $(DLLLIBRARY) $^ \
430                         $(LIBS) $(MODLIBS) $(SYSLIBS); \
431         else true; \
432         fi
435 oldsharedmods: $(SHAREDMODS)
438 Makefile Modules/config.c: Makefile.pre \
439                                 $(srcdir)/Modules/config.c.in \
440                                 $(MAKESETUP) \
441                                 Modules/Setup.config \
442                                 Modules/Setup \
443                                 Modules/Setup.local
444         $(SHELL) $(MAKESETUP) -c $(srcdir)/Modules/config.c.in \
445                                 -s Modules \
446                                 Modules/Setup.config \
447                                 Modules/Setup.local \
448                                 Modules/Setup
449         @mv config.c Modules
450         @echo "The Makefile was updated, you may need to re-run make."
453 Modules/Setup: $(srcdir)/Modules/Setup.dist
454         @if test -f Modules/Setup; then \
455                 echo "-----------------------------------------------"; \
456                 echo "Modules/Setup.dist is newer than Modules/Setup;"; \
457                 echo "check to make sure you have all the updates you"; \
458                 echo "need in your Modules/Setup file."; \
459                 echo "Usually, copying Setup.dist to Setup will work."; \
460                 echo "-----------------------------------------------"; \
461         fi
463 ############################################################################
464 # Special rules for object files
466 Modules/getbuildinfo.o: $(PARSER_OBJS) \
467                 $(OBJECT_OBJS) \
468                 $(PYTHON_OBJS) \
469                 $(MODULE_OBJS) \
470                 $(SIGNAL_OBJS) \
471                 $(MODOBJS) \
472                 $(srcdir)/Modules/getbuildinfo.c
473         $(CC) -c $(PY_CFLAGS) -DSVNVERSION=\"`LC_ALL=C $(SVNVERSION)`\" -o $@ $(srcdir)/Modules/getbuildinfo.c
475 Modules/getpath.o: $(srcdir)/Modules/getpath.c Makefile
476         $(CC) -c $(PY_CFLAGS) -DPYTHONPATH='"$(PYTHONPATH)"' \
477                 -DPREFIX='"$(prefix)"' \
478                 -DEXEC_PREFIX='"$(exec_prefix)"' \
479                 -DVERSION='"$(VERSION)"' \
480                 -DVPATH='"$(VPATH)"' \
481                 -o $@ $(srcdir)/Modules/getpath.c
483 Modules/python.o: $(srcdir)/Modules/python.c
484         $(MAINCC) -c $(PY_CFLAGS) -o $@ $(srcdir)/Modules/python.c
487 $(GRAMMAR_H) $(GRAMMAR_C): $(PGEN) $(GRAMMAR_INPUT)
488                 -@$(INSTALL) -d Include
489                 -$(PGEN) $(GRAMMAR_INPUT) $(GRAMMAR_H) $(GRAMMAR_C)
491 $(PGEN):        $(PGENOBJS)
492                 $(CC) $(OPT) $(LDFLAGS) $(PGENOBJS) $(LIBS) -o $(PGEN)
494 Parser/grammar.o:       $(srcdir)/Parser/grammar.c \
495                                 $(srcdir)/Include/token.h \
496                                 $(srcdir)/Include/grammar.h
497 Parser/metagrammar.o:   $(srcdir)/Parser/metagrammar.c
499 Parser/tokenizer_pgen.o:        $(srcdir)/Parser/tokenizer.c
501 Parser/pgenmain.o:      $(srcdir)/Include/parsetok.h
503 $(AST_H): $(AST_ASDL) $(ASDLGEN_FILES)
504         $(ASDLGEN) -h $(AST_H_DIR) $(AST_ASDL)
506 $(AST_C): $(AST_ASDL) $(ASDLGEN_FILES)
507         $(ASDLGEN) -c $(AST_C_DIR) $(AST_ASDL)
509 Python/compile.o Python/symtable.o: $(GRAMMAR_H) $(AST_H)
511 Python/getplatform.o: $(srcdir)/Python/getplatform.c
512                 $(CC) -c $(PY_CFLAGS) -DPLATFORM='"$(MACHDEP)"' -o $@ $(srcdir)/Python/getplatform.c
514 Python/importdl.o: $(srcdir)/Python/importdl.c
515                 $(CC) -c $(PY_CFLAGS) -I$(DLINCLDIR) -o $@ $(srcdir)/Python/importdl.c
517 Objects/unicodectype.o: $(srcdir)/Objects/unicodectype.c \
518                                 $(srcdir)/Objects/unicodetype_db.h
520 STRINGLIB_HEADERS= \
521                 $(srcdir)/Objects/stringlib/count.h \
522                 $(srcdir)/Objects/stringlib/fastsearch.h \
523                 $(srcdir)/Objects/stringlib/find.h \
524                 $(srcdir)/Objects/stringlib/formatter.h \
525                 $(srcdir)/Objects/stringlib/partition.h \
526                 $(srcdir)/Objects/stringlib/stringdefs.h \
527                 $(srcdir)/Objects/stringlib/string_format.h \
528                 $(srcdir)/Objects/stringlib/unicodedefs.h
530 Objects/unicodeobject.o: $(srcdir)/Objects/unicodeobject.c \
531                                 $(STRINGLIB_HEADERS)
533 Objects/stringobject.o: $(srcdir)/Objects/stringobject.c \
534                                 $(STRINGLIB_HEADERS)
536 Python/formatter_unicode.o: $(srcdir)/Python/formatter_unicode.c \
537                                 $(STRINGLIB_HEADERS)
539 Python/formatter_string.o: $(srcdir)/Python/formatter_string.c \
540                                 $(STRINGLIB_HEADERS)
542 ############################################################################
543 # Header files
545 PYTHON_HEADERS= \
546                 Include/Python-ast.h \
547                 Include/Python.h \
548                 Include/abstract.h \
549                 Include/asdl.h \
550                 Include/ast.h \
551                 Include/bitset.h \
552                 Include/boolobject.h \
553                 Include/bufferobject.h \
554                 Include/cellobject.h \
555                 Include/ceval.h \
556                 Include/classobject.h \
557                 Include/cobject.h \
558                 Include/code.h \
559                 Include/codecs.h \
560                 Include/compile.h \
561                 Include/complexobject.h \
562                 Include/descrobject.h \
563                 Include/dictobject.h \
564                 Include/enumobject.h \
565                 Include/errcode.h \
566                 Include/eval.h \
567                 Include/fileobject.h \
568                 Include/floatobject.h \
569                 Include/frameobject.h \
570                 Include/funcobject.h \
571                 Include/genobject.h \
572                 Include/import.h \
573                 Include/intobject.h \
574                 Include/intrcheck.h \
575                 Include/iterobject.h \
576                 Include/listobject.h \
577                 Include/longintrepr.h \
578                 Include/longobject.h \
579                 Include/marshal.h \
580                 Include/metagrammar.h \
581                 Include/methodobject.h \
582                 Include/modsupport.h \
583                 Include/moduleobject.h \
584                 Include/node.h \
585                 Include/object.h \
586                 Include/objimpl.h \
587                 Include/opcode.h \
588                 Include/osdefs.h \
589                 Include/parsetok.h \
590                 Include/patchlevel.h \
591                 Include/pgen.h \
592                 Include/pgenheaders.h \
593                 Include/pyarena.h \
594                 Include/pydebug.h \
595                 Include/pyerrors.h \
596                 Include/pyfpe.h \
597                 Include/pygetopt.h \
598                 Include/pymem.h \
599                 Include/pyport.h \
600                 Include/pystate.h \
601                 Include/pystrcmp.h \
602                 Include/pystrtod.h \
603                 Include/pythonrun.h \
604                 Include/pythread.h \
605                 Include/rangeobject.h \
606                 Include/setobject.h \
607                 Include/sliceobject.h \
608                 Include/stringobject.h \
609                 Include/structmember.h \
610                 Include/structseq.h \
611                 Include/symtable.h \
612                 Include/sysmodule.h \
613                 Include/traceback.h \
614                 Include/tupleobject.h \
615                 Include/ucnhash.h \
616                 Include/unicodeobject.h \
617                 Include/weakrefobject.h \
618                 pyconfig.h \
619                 $(PARSER_HEADERS)
621 $(LIBRARY_OBJS) $(MODOBJS) Modules/python.o: $(PYTHON_HEADERS)
624 ######################################################################
626 # Test the interpreter (twice, once without .pyc files, once with)
627 # In the past, we've had problems where bugs in the marshalling or
628 # elsewhere caused bytecode read from .pyc files to behave differently
629 # than bytecode generated directly from a .py source file.  Sometimes
630 # the bytecode read from a .pyc file had the bug, somtimes the directly
631 # generated bytecode.  This is sometimes a very shy bug needing a lot of
632 # sample data.
634 TESTOPTS=       -l $(EXTRATESTOPTS)
635 TESTPROG=       $(srcdir)/Lib/test/regrtest.py
636 TESTPYTHON=     $(RUNSHARED) ./$(BUILDPYTHON) -E -tt
637 test:           all platform
638                 -find $(srcdir)/Lib -name '*.py[co]' -print | xargs rm -f
639                 -$(TESTPYTHON) $(TESTPROG) $(TESTOPTS)
640                 $(TESTPYTHON) $(TESTPROG) $(TESTOPTS)
642 testall:        all platform
643                 -find $(srcdir)/Lib -name '*.py[co]' -print | xargs rm -f
644                 $(TESTPYTHON) $(srcdir)/Lib/compileall.py
645                 -find $(srcdir)/Lib -name '*.py[co]' -print | xargs rm -f
646                 -$(TESTPYTHON) $(TESTPROG) $(TESTOPTS) -uall
647                 $(TESTPYTHON) $(TESTPROG) $(TESTOPTS) -uall
649 #  Run the unitests for both architectures in a Universal build on OSX
650 #  Must be run on an Intel box.
651 testuniversal:  all platform
652                 if [ `arch` != 'i386' ];then \
653                         echo "This can only be used on OSX/i386" ;\
654                         exit 1 ;\
655                 fi
656                 -find $(srcdir)/Lib -name '*.py[co]' -print | xargs rm -f
657                 -$(TESTPYTHON) $(TESTPROG) $(TESTOPTS) -uall
658                 $(TESTPYTHON) $(TESTPROG) $(TESTOPTS) -uall
659                 $(RUNSHARED) /usr/libexec/oah/translate ./$(BUILDPYTHON) -E -tt $(TESTPROG) $(TESTOPTS) -uall
662 # Like testall, but with a single pass only
663 # run an optional script to include some information about the build environment
664 buildbottest:   all platform
665                 -@if which pybuildbot.identify >/dev/null 2>&1; then \
666                         pybuildbot.identify "CC='$(CC)'" "CXX='$(CXX)'"; \
667                 fi
668                 $(TESTPYTHON) $(TESTPROG) $(TESTOPTS) -uall -rw
670 QUICKTESTOPTS=  $(TESTOPTS) -x test_thread test_signal test_strftime \
671                 test_unicodedata test_re test_sre test_select test_poll \
672                 test_linuxaudiodev test_struct test_sunaudiodev test_zlib
673 quicktest:      all platform
674                 -find $(srcdir)/Lib -name '*.py[co]' -print | xargs rm -f
675                 -$(TESTPYTHON) $(TESTPROG) $(QUICKTESTOPTS)
676                 $(TESTPYTHON) $(TESTPROG) $(QUICKTESTOPTS)
678 MEMTESTOPTS=    $(QUICKTESTOPTS) -x test_dl test___all__ test_fork1 \
679                 test_longexp
680 memtest:        all platform
681                 -rm -f $(srcdir)/Lib/test/*.py[co]
682                 -$(TESTPYTHON) $(TESTPROG) $(MEMTESTOPTS)
683                 $(TESTPYTHON) $(TESTPROG) $(MEMTESTOPTS)
685 # Install everything
686 install:        @FRAMEWORKINSTALLFIRST@ altinstall bininstall maninstall @FRAMEWORKINSTALLLAST@
688 # Install almost everything without disturbing previous versions
689 altinstall:     @FRAMEWORKALTINSTALLFIRST@ altbininstall libinstall inclinstall libainstall \
690                 sharedinstall oldsharedinstall @FRAMEWORKALTINSTALLLAST@
692 # Install shared libraries enabled by Setup
693 DESTDIRS=       $(exec_prefix) $(LIBDIR) $(BINLIBDEST) $(DESTSHARED)
695 oldsharedinstall: $(DESTSHARED) $(SHAREDMODS)
696                 @for i in X $(SHAREDMODS); do \
697                   if test $$i != X; then \
698                     echo $(INSTALL_SHARED) $$i $(DESTSHARED)/`basename $$i`; \
699                     $(INSTALL_SHARED) $$i $(DESTDIR)$(DESTSHARED)/`basename $$i`; \
700                   fi; \
701                 done
703 $(DESTSHARED):
704                 @for i in $(DESTDIRS); \
705                 do \
706                         if test ! -d $(DESTDIR)$$i; then \
707                                 echo "Creating directory $$i"; \
708                                 $(INSTALL) -d -m $(DIRMODE) $(DESTDIR)$$i; \
709                         else    true; \
710                         fi; \
711                 done
714 # Install the interpreter (by creating a hard link to python$(VERSION))
715 bininstall:     altbininstall
716         -if test -f $(DESTDIR)$(BINDIR)/$(PYTHON) -o -h $(DESTDIR)$(BINDIR)/$(PYTHON); \
717         then rm -f $(DESTDIR)$(BINDIR)/$(PYTHON); \
718         else true; \
719         fi
720         (cd $(DESTDIR)$(BINDIR); $(LN) python$(VERSION)$(EXE) $(PYTHON))
721         -rm -f $(DESTDIR)$(BINDIR)/python-config
722         (cd $(DESTDIR)$(BINDIR); $(LN) -s python$(VERSION)-config python-config)
724 # Install the interpreter with $(VERSION) affixed
725 # This goes into $(exec_prefix)
726 altbininstall:  $(BUILDPYTHON)
727         @for i in $(BINDIR) $(LIBDIR); \
728         do \
729                 if test ! -d $(DESTDIR)$$i; then \
730                         echo "Creating directory $$i"; \
731                         $(INSTALL) -d -m $(DIRMODE) $(DESTDIR)$$i; \
732                 else    true; \
733                 fi; \
734         done
735         $(INSTALL_PROGRAM) $(BUILDPYTHON) $(DESTDIR)$(BINDIR)/python$(VERSION)$(EXE)
736         if test -f libpython$(VERSION)$(SO); then \
737                 if test "$(SO)" = .dll; then \
738                         $(INSTALL_SHARED) libpython$(VERSION)$(SO) $(DESTDIR)$(BINDIR); \
739                 else \
740                         $(INSTALL_SHARED) libpython$(VERSION)$(SO) $(DESTDIR)$(LIBDIR)/$(INSTSONAME); \
741                         if test libpython$(VERSION)$(SO) != $(INSTSONAME); then \
742                                 (cd $(DESTDIR)$(LIBDIR); $(LN) -sf $(INSTSONAME) libpython$(VERSION)$(SO)); \
743                         fi \
744                 fi; \
745         else    true; \
746         fi
748 # Install the manual page
749 maninstall:
750         @for i in $(MANDIR) $(MANDIR)/man1; \
751         do \
752                 if test ! -d $(DESTDIR)$$i; then \
753                         echo "Creating directory $$i"; \
754                         $(INSTALL) -d -m $(DIRMODE) $(DESTDIR)$$i; \
755                 else    true; \
756                 fi; \
757         done
758         $(INSTALL_DATA) $(srcdir)/Misc/python.man \
759                 $(DESTDIR)$(MANDIR)/man1/python.1
761 # Install the library
762 PLATDIR=        plat-$(MACHDEP)
763 EXTRAPLATDIR= @EXTRAPLATDIR@
764 EXTRAMACHDEPPATH=@EXTRAMACHDEPPATH@
765 MACHDEPS=       $(PLATDIR) $(EXTRAPLATDIR)
766 XMLLIBSUBDIRS=  xml xml/dom xml/etree xml/parsers xml/sax
767 PLATMACDIRS= plat-mac plat-mac/Carbon plat-mac/lib-scriptpackages \
768         plat-mac/lib-scriptpackages/_builtinSuites \
769         plat-mac/lib-scriptpackages/CodeWarrior \
770         plat-mac/lib-scriptpackages/Explorer \
771         plat-mac/lib-scriptpackages/Finder \
772         plat-mac/lib-scriptpackages/Netscape \
773         plat-mac/lib-scriptpackages/StdSuites \
774         plat-mac/lib-scriptpackages/SystemEvents \
775         plat-mac/lib-scriptpackages/Terminal 
776 PLATMACPATH=:plat-mac:plat-mac/lib-scriptpackages
777 LIBSUBDIRS=     lib-tk site-packages test test/output test/data \
778                 test/decimaltestdata \
779                 encodings compiler hotshot \
780                 email email/mime email/test email/test/data \
781                 sqlite3 sqlite3/test \
782                 logging bsddb bsddb/test csv wsgiref \
783                 ctypes ctypes/test ctypes/macholib idlelib idlelib/Icons \
784                 distutils distutils/command distutils/tests $(XMLLIBSUBDIRS) \
785                 setuptools setuptools/command setuptools/tests setuptools.egg-info \
786                 curses $(MACHDEPS)
787 libinstall:     build_all $(srcdir)/Lib/$(PLATDIR)
788         @for i in $(SCRIPTDIR) $(LIBDEST); \
789         do \
790                 if test ! -d $(DESTDIR)$$i; then \
791                         echo "Creating directory $$i"; \
792                         $(INSTALL) -d -m $(DIRMODE) $(DESTDIR)$$i; \
793                 else    true; \
794                 fi; \
795         done
796         @for d in $(LIBSUBDIRS); \
797         do \
798                 a=$(srcdir)/Lib/$$d; \
799                 if test ! -d $$a; then continue; else true; fi; \
800                 b=$(LIBDEST)/$$d; \
801                 if test ! -d $(DESTDIR)$$b; then \
802                         echo "Creating directory $$b"; \
803                         $(INSTALL) -d -m $(DIRMODE) $(DESTDIR)$$b; \
804                 else    true; \
805                 fi; \
806         done
807         @for i in $(srcdir)/Lib/*.py $(srcdir)/Lib/*.doc $(srcdir)/Lib/*.egg-info ; \
808         do \
809                 if test -x $$i; then \
810                         $(INSTALL_SCRIPT) $$i $(DESTDIR)$(LIBDEST); \
811                         echo $(INSTALL_SCRIPT) $$i $(LIBDEST); \
812                 else \
813                         $(INSTALL_DATA) $$i $(DESTDIR)$(LIBDEST); \
814                         echo $(INSTALL_DATA) $$i $(LIBDEST); \
815                 fi; \
816         done
817         @for d in $(LIBSUBDIRS); \
818         do \
819                 a=$(srcdir)/Lib/$$d; \
820                 if test ! -d $$a; then continue; else true; fi; \
821                 if test `ls $$a | wc -l` -lt 1; then continue; fi; \
822                 b=$(LIBDEST)/$$d; \
823                 for i in $$a/*; \
824                 do \
825                         case $$i in \
826                         *CVS) ;; \
827                         *.py[co]) ;; \
828                         *.orig) ;; \
829                         *~) ;; \
830                         *) \
831                                 if test -d $$i; then continue; fi; \
832                                 if test -x $$i; then \
833                                     echo $(INSTALL_SCRIPT) $$i $$b; \
834                                     $(INSTALL_SCRIPT) $$i $(DESTDIR)$$b; \
835                                 else \
836                                     echo $(INSTALL_DATA) $$i $$b; \
837                                     $(INSTALL_DATA) $$i $(DESTDIR)$$b; \
838                                 fi;; \
839                         esac; \
840                 done; \
841         done
842         $(INSTALL_DATA) $(srcdir)/LICENSE $(DESTDIR)$(LIBDEST)/LICENSE.txt
843         PYTHONPATH=$(DESTDIR)$(LIBDEST)  $(RUNSHARED) \
844                 ./$(BUILDPYTHON) -Wi -tt $(DESTDIR)$(LIBDEST)/compileall.py \
845                 -d $(LIBDEST) -f \
846                 -x 'bad_coding|badsyntax|site-packages' $(DESTDIR)$(LIBDEST)
847         PYTHONPATH=$(DESTDIR)$(LIBDEST) $(RUNSHARED) \
848                 ./$(BUILDPYTHON) -Wi -tt -O $(DESTDIR)$(LIBDEST)/compileall.py \
849                 -d $(LIBDEST) -f \
850                 -x 'bad_coding|badsyntax|site-packages' $(DESTDIR)$(LIBDEST)
851         -PYTHONPATH=$(DESTDIR)$(LIBDEST)  $(RUNSHARED) \
852                 ./$(BUILDPYTHON) -Wi -t $(DESTDIR)$(LIBDEST)/compileall.py \
853                 -d $(LIBDEST)/site-packages -f \
854                 -x badsyntax $(DESTDIR)$(LIBDEST)/site-packages
855         -PYTHONPATH=$(DESTDIR)$(LIBDEST) $(RUNSHARED) \
856                 ./$(BUILDPYTHON) -Wi -t -O $(DESTDIR)$(LIBDEST)/compileall.py \
857                 -d $(LIBDEST)/site-packages -f \
858                 -x badsyntax $(DESTDIR)$(LIBDEST)/site-packages
860 # Create the PLATDIR source directory, if one wasn't distributed..
861 $(srcdir)/Lib/$(PLATDIR):
862         mkdir $(srcdir)/Lib/$(PLATDIR)
863         cp $(srcdir)/Lib/plat-generic/regen $(srcdir)/Lib/$(PLATDIR)/regen
864         export PATH; PATH="`pwd`:$$PATH"; \
865         export PYTHONPATH; PYTHONPATH="`pwd`/Lib"; \
866         export DYLD_FRAMEWORK_PATH; DYLD_FRAMEWORK_PATH="`pwd`"; \
867         export EXE; EXE="$(BUILDEXE)"; \
868         cd $(srcdir)/Lib/$(PLATDIR); ./regen
870 # Install the include files
871 INCLDIRSTOMAKE=$(INCLUDEDIR) $(CONFINCLUDEDIR) $(INCLUDEPY) $(CONFINCLUDEPY)
872 inclinstall:
873         @for i in $(INCLDIRSTOMAKE); \
874         do \
875                 if test ! -d $(DESTDIR)$$i; then \
876                         echo "Creating directory $$i"; \
877                         $(INSTALL) -d -m $(DIRMODE) $(DESTDIR)$$i; \
878                 else    true; \
879                 fi; \
880         done
881         @for i in $(srcdir)/Include/*.h; \
882         do \
883                 echo $(INSTALL_DATA) $$i $(INCLUDEPY); \
884                 $(INSTALL_DATA) $$i $(DESTDIR)$(INCLUDEPY); \
885         done
886         $(INSTALL_DATA) pyconfig.h $(DESTDIR)$(CONFINCLUDEPY)/pyconfig.h
888 # Install the library and miscellaneous stuff needed for extending/embedding
889 # This goes into $(exec_prefix)
890 LIBPL=          $(LIBP)/config
891 libainstall:    all
892         @for i in $(LIBDIR) $(LIBP) $(LIBPL); \
893         do \
894                 if test ! -d $(DESTDIR)$$i; then \
895                         echo "Creating directory $$i"; \
896                         $(INSTALL) -d -m $(DIRMODE) $(DESTDIR)$$i; \
897                 else    true; \
898                 fi; \
899         done
900         @if test -d $(LIBRARY); then :; else \
901                 if test "$(PYTHONFRAMEWORKDIR)" = no-framework; then \
902                         if test "$(SO)" = .dll; then \
903                                 $(INSTALL_DATA) $(LDLIBRARY) $(DESTDIR)$(LIBPL) ; \
904                         else \
905                                 $(INSTALL_DATA) $(LIBRARY) $(DESTDIR)$(LIBPL)/$(LIBRARY) ; \
906                                 $(RANLIB) $(DESTDIR)$(LIBPL)/$(LIBRARY) ; \
907                         fi; \
908                 else \
909                         echo Skip install of $(LIBRARY) - use make frameworkinstall; \
910                 fi; \
911         fi
912         $(INSTALL_DATA) Modules/config.c $(DESTDIR)$(LIBPL)/config.c
913         $(INSTALL_DATA) Modules/python.o $(DESTDIR)$(LIBPL)/python.o
914         $(INSTALL_DATA) $(srcdir)/Modules/config.c.in $(DESTDIR)$(LIBPL)/config.c.in
915         $(INSTALL_DATA) Makefile $(DESTDIR)$(LIBPL)/Makefile
916         $(INSTALL_DATA) Modules/Setup $(DESTDIR)$(LIBPL)/Setup
917         $(INSTALL_DATA) Modules/Setup.local $(DESTDIR)$(LIBPL)/Setup.local
918         $(INSTALL_DATA) Modules/Setup.config $(DESTDIR)$(LIBPL)/Setup.config
919         $(INSTALL_SCRIPT) $(srcdir)/Modules/makesetup $(DESTDIR)$(LIBPL)/makesetup
920         $(INSTALL_SCRIPT) $(srcdir)/install-sh $(DESTDIR)$(LIBPL)/install-sh
921         # Substitution happens here, as the completely-expanded BINDIR
922         # is not available in configure
923         sed -e "s,@EXENAME@,$(BINDIR)/python$(VERSION)$(EXE)," < $(srcdir)/Misc/python-config.in >python-config
924         $(INSTALL_SCRIPT) python-config $(DESTDIR)$(BINDIR)/python$(VERSION)-config
925         rm python-config
926         @if [ -s Modules/python.exp -a \
927                 "`echo $(MACHDEP) | sed 's/^\(...\).*/\1/'`" = "aix" ]; then \
928                 echo; echo "Installing support files for building shared extension modules on AIX:"; \
929                 $(INSTALL_DATA) Modules/python.exp              \
930                                 $(DESTDIR)$(LIBPL)/python.exp;          \
931                 echo; echo "$(LIBPL)/python.exp";               \
932                 $(INSTALL_SCRIPT) $(srcdir)/Modules/makexp_aix  \
933                                 $(DESTDIR)$(LIBPL)/makexp_aix;          \
934                 echo "$(LIBPL)/makexp_aix";                     \
935                 $(INSTALL_SCRIPT) $(srcdir)/Modules/ld_so_aix   \
936                                 $(DESTDIR)$(LIBPL)/ld_so_aix;           \
937                 echo "$(LIBPL)/ld_so_aix";                      \
938                 echo; echo "See Misc/AIX-NOTES for details.";   \
939         else true; \
940         fi
941         @case "$(MACHDEP)" in beos*) \
942                 echo; echo "Installing support files for building shared extension modules on BeOS:"; \
943                 $(INSTALL_DATA) Misc/BeOS-NOTES $(DESTDIR)$(LIBPL)/README;      \
944                 echo; echo "$(LIBPL)/README";                   \
945                 $(INSTALL_SCRIPT) Modules/ar_beos $(DESTDIR)$(LIBPL)/ar_beos; \
946                 echo "$(LIBPL)/ar_beos";                        \
947                 $(INSTALL_SCRIPT) Modules/ld_so_beos $(DESTDIR)$(LIBPL)/ld_so_beos; \
948                 echo "$(LIBPL)/ld_so_beos";                     \
949                 echo; echo "See Misc/BeOS-NOTES for details.";  \
950                 ;; \
951         esac
953 # Install the dynamically loadable modules
954 # This goes into $(exec_prefix)
955 sharedinstall:
956         $(RUNSHARED) ./$(BUILDPYTHON) -E $(srcdir)/setup.py install \
957                 --prefix=$(prefix) \
958                 --install-scripts=$(BINDIR) \
959                 --install-platlib=$(DESTSHARED) \
960                 --root=/$(DESTDIR)
962 # Here are a couple of targets for MacOSX again, to install a full
963 # framework-based Python. frameworkinstall installs everything, the
964 # subtargets install specific parts. Much of the actual work is offloaded to
965 # the Makefile in Mac
968 # This target is here for backward compatiblity, previous versions of Python
969 # hadn't integrated framework installation in the normal install process.
970 frameworkinstall: install
972 # On install, we re-make the framework
973 # structure in the install location, /Library/Frameworks/ or the argument to
974 # --enable-framework. If --enable-framework has been specified then we have
975 # automatically set prefix to the location deep down in the framework, so we
976 # only have to cater for the structural bits of the framework.
978 frameworkinstallframework: frameworkinstallstructure install frameworkinstallmaclib
980 frameworkinstallstructure:      $(LDLIBRARY)
981         @if test "$(PYTHONFRAMEWORKDIR)" = no-framework; then \
982                 echo Not configured with --enable-framework; \
983                 exit 1; \
984         else true; \
985         fi
986         @for i in $(prefix)/Resources/English.lproj $(prefix)/lib; do\
987                 if test ! -d $(DESTDIR)$$i; then \
988                         echo "Creating directory $(DESTDIR)$$i"; \
989                         $(INSTALL) -d -m $(DIRMODE) $(DESTDIR)$$i; \
990                 else    true; \
991                 fi; \
992         done
993         $(LN) -fsn include/python$(VERSION) $(DESTDIR)$(prefix)/Headers
994         $(INSTALL_DATA) $(RESSRCDIR)/Info.plist $(DESTDIR)$(prefix)/Resources/Info.plist
995         $(INSTALL_DATA) $(RESSRCDIR)/version.plist $(DESTDIR)$(prefix)/Resources/version.plist
996         $(INSTALL_DATA) $(RESSRCDIR)/English.lproj/InfoPlist.strings \
997                 $(DESTDIR)$(prefix)/Resources/English.lproj/InfoPlist.strings
998         $(LN) -fsn $(VERSION) $(DESTDIR)$(PYTHONFRAMEWORKINSTALLDIR)/Versions/Current
999         $(LN) -fsn Versions/Current/Python $(DESTDIR)$(PYTHONFRAMEWORKINSTALLDIR)/Python
1000         $(LN) -fsn Versions/Current/Headers $(DESTDIR)$(PYTHONFRAMEWORKINSTALLDIR)/Headers
1001         $(LN) -fsn Versions/Current/Resources $(DESTDIR)$(PYTHONFRAMEWORKINSTALLDIR)/Resources
1002         $(INSTALL_SHARED) $(LDLIBRARY) $(DESTDIR)$(PYTHONFRAMEWORKPREFIX)/$(LDLIBRARY)
1004 # This installs Mac/Lib into the framework
1005 # Install a number of symlinks to keep software that expects a normal unix
1006 # install (which includes python-config) happy.
1007 frameworkinstallmaclib:
1008         ln -fs "../../../Python" "$(DESTDIR)$(prefix)/lib/python$(VERSION)/config/libpython$(VERSION).a"
1009         cd Mac && $(MAKE) installmacsubtree DESTDIR="$(DESTDIR)"
1011 # This installs the IDE, the Launcher and other apps into /Applications
1012 frameworkinstallapps:
1013         cd Mac && $(MAKE) installapps DESTDIR="$(DESTDIR)"
1015 # This install the unix python and pythonw tools in /usr/local/bin
1016 frameworkinstallunixtools:
1017         cd Mac && $(MAKE) installunixtools DESTDIR="$(DESTDIR)"
1019 frameworkaltinstallunixtools:
1020         cd Mac && $(MAKE) altinstallunixtools DESTDIR="$(DESTDIR)"
1022 # This installs the Demos and Tools into the applications directory.
1023 # It is not part of a normal frameworkinstall
1024 frameworkinstallextras:
1025         cd Mac && Make installextras DESTDIR="$(DESTDIR)"
1027 # This installs a few of the useful scripts in Tools/scripts
1028 scriptsinstall:
1029         SRCDIR=$(srcdir) $(RUNSHARED) \
1030         ./$(BUILDPYTHON) $(srcdir)/Tools/scripts/setup.py install \
1031         --prefix=$(prefix) \
1032         --install-scripts=$(BINDIR) \
1033         --root=/$(DESTDIR)
1035 # Build the toplevel Makefile
1036 Makefile.pre: Makefile.pre.in config.status
1037         CONFIG_FILES=Makefile.pre CONFIG_HEADERS= $(SHELL) config.status
1038         $(MAKE) -f Makefile.pre Makefile
1040 # Run the configure script.
1041 config.status:  $(srcdir)/configure
1042         $(SHELL) $(srcdir)/configure $(CONFIG_ARGS)
1044 .PRECIOUS: config.status $(BUILDPYTHON) Makefile Makefile.pre
1046 # Some make's put the object file in the current directory
1047 .c.o:
1048         $(CC) -c $(PY_CFLAGS) -o $@ $<
1050 # Run reindent on the library
1051 reindent:
1052         ./$(BUILDPYTHON) $(srcdir)/Tools/scripts/reindent.py -r $(srcdir)/Lib
1054 # Rerun configure with the same options as it was run last time,
1055 # provided the config.status script exists
1056 recheck:
1057         $(SHELL) config.status --recheck
1058         $(SHELL) config.status
1060 # Rebuild the configure script from configure.in; also rebuild pyconfig.h.in
1061 autoconf:
1062         (cd $(srcdir); autoconf)
1063         (cd $(srcdir); autoheader)
1065 # Create a tags file for vi
1066 tags::
1067         cd $(srcdir); \
1068         ctags -w -t Include/*.h; \
1069         for i in $(SRCDIRS); do ctags -w -t -a $$i/*.[ch]; \
1070         done; \
1071         sort -o tags tags
1073 # Create a tags file for GNU Emacs
1074 TAGS::
1075         cd $(srcdir); \
1076         etags Include/*.h; \
1077         for i in $(SRCDIRS); do etags -a $$i/*.[ch]; done
1079 # Sanitation targets -- clean leaves libraries, executables and tags
1080 # files, which clobber removes those as well
1081 pycremoval:
1082         find $(srcdir) -name '*.py[co]' -exec rm -f {} ';'
1084 clean: pycremoval
1085         find . -name '*.o' -exec rm -f {} ';'
1086         find . -name '*.s[ol]' -exec rm -f {} ';'
1087         find $(srcdir)/build -name 'fficonfig.h' -exec rm -f {} ';' || true
1088         find $(srcdir)/build -name 'fficonfig.py' -exec rm -f {} ';' || true
1090 clobber: clean
1091         -rm -f $(BUILDPYTHON) $(PGEN) $(LIBRARY) $(LDLIBRARY) $(DLLLIBRARY) \
1092                 tags TAGS \
1093                 config.cache config.log pyconfig.h Modules/config.c
1094         -rm -rf build platform
1095         -rm -rf $(PYTHONFRAMEWORKDIR)
1097 # Make things extra clean, before making a distribution:
1098 # remove all generated files, even Makefile[.pre]
1099 # Keep configure and Python-ast.[ch], it's possible they can't be generated
1100 distclean: clobber
1101         -rm -f core Makefile Makefile.pre config.status \
1102                 Modules/Setup Modules/Setup.local Modules/Setup.config
1103         find $(srcdir) '(' -name '*.fdc' -o -name '*~' \
1104                            -o -name '[@,#]*' -o -name '*.old' \
1105                            -o -name '*.orig' -o -name '*.rej' \
1106                            -o -name '*.bak' ')' \
1107                            -exec rm -f {} ';'
1109 # Check for smelly exported symbols (not starting with Py/_Py)
1110 smelly: all
1111         nm -p $(LIBRARY) | \
1112                 sed -n "/ [TDB] /s/.* //p" | grep -v "^_*Py" | sort -u; \
1114 # Find files with funny names
1115 funny:
1116         find $(DISTDIRS) -type d \
1117                 -o -name '*.[chs]' \
1118                 -o -name '*.py' \
1119                 -o -name '*.doc' \
1120                 -o -name '*.sty' \
1121                 -o -name '*.bib' \
1122                 -o -name '*.dat' \
1123                 -o -name '*.el' \
1124                 -o -name '*.fd' \
1125                 -o -name '*.in' \
1126                 -o -name '*.tex' \
1127                 -o -name '*,[vpt]' \
1128                 -o -name 'Setup' \
1129                 -o -name 'Setup.*' \
1130                 -o -name README \
1131                 -o -name Makefile \
1132                 -o -name ChangeLog \
1133                 -o -name Repository \
1134                 -o -name Root \
1135                 -o -name Entries \
1136                 -o -name Tag \
1137                 -o -name tags \
1138                 -o -name TAGS \
1139                 -o -name .cvsignore \
1140                 -o -name MANIFEST \
1141                 -o -print
1143 # Perform some verification checks on any modified files.
1144 check:
1145         ./$(BUILDPYTHON) $(srcdir)/Tools/scripts/patchcheck.py
1147 # Dependencies
1149 Python/thread.o: @THREADHEADERS@
1151 # Declare targets that aren't real files
1152 .PHONY: all build_all sharedmods oldsharedmods test quicktest memtest
1153 .PHONY: install altinstall oldsharedinstall bininstall altbininstall
1154 .PHONY: maninstall libinstall inclinstall libainstall sharedinstall
1155 .PHONY: frameworkinstall frameworkinstallframework frameworkinstallstructure
1156 .PHONY: frameworkinstallmaclib frameworkinstallapps frameworkinstallunixtools
1157 .PHONY: frameworkaltinstallunixtools recheck autoconf clean clobber distclean 
1158 .PHONY: smelly funny
1160 # IF YOU PUT ANYTHING HERE IT WILL GO AWAY