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