Added duplicate call to fileConfig() to ensure that it cleans up after itself correctly.
[python.git] / Makefile.pre.in
blobff6dc25efa67fdeb89615ff0b22be734ff2cd0b3
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. -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 # Expanded directories
86 BINDIR=         $(exec_prefix)/bin
87 LIBDIR=         $(exec_prefix)/lib
88 MANDIR=         @mandir@
89 INCLUDEDIR=     @includedir@
90 CONFINCLUDEDIR= $(exec_prefix)/include
91 SCRIPTDIR=      $(prefix)/lib
93 # Detailed destination directories
94 BINLIBDEST=     $(LIBDIR)/python$(VERSION)
95 LIBDEST=        $(SCRIPTDIR)/python$(VERSION)
96 INCLUDEPY=      $(INCLUDEDIR)/python$(VERSION)
97 CONFINCLUDEPY=  $(CONFINCLUDEDIR)/python$(VERSION)
98 LIBP=           $(LIBDIR)/python$(VERSION)
100 # Symbols used for using shared libraries
101 SO=             @SO@
102 LDSHARED=       @LDSHARED@
103 BLDSHARED=      @BLDSHARED@
104 DESTSHARED=     $(BINLIBDEST)/lib-dynload
106 # Executable suffix (.exe on Windows and Mac OS X)
107 EXE=            @EXEEXT@
108 BUILDEXE=       @BUILDEXEEXT@
110 # Short name and location for Mac OS X Python framework
111 UNIVERSALSDK=@UNIVERSALSDK@
112 PYTHONFRAMEWORK=        @PYTHONFRAMEWORK@
113 PYTHONFRAMEWORKDIR=     @PYTHONFRAMEWORKDIR@
114 PYTHONFRAMEWORKPREFIX=  @PYTHONFRAMEWORKPREFIX@
115 PYTHONFRAMEWORKINSTALLDIR= @PYTHONFRAMEWORKINSTALLDIR@
116 # Deployment target selected during configure, to be checked
117 # by distutils. The export statement is needed to ensure that the
118 # deployment target is active during build.
119 MACOSX_DEPLOYMENT_TARGET=@CONFIGURE_MACOSX_DEPLOYMENT_TARGET@
120 @EXPORT_MACOSX_DEPLOYMENT_TARGET@export MACOSX_DEPLOYMENT_TARGET
122 # Options to enable prebinding (for fast startup prior to Mac OS X 10.3)
123 OTHER_LIBTOOL_OPT=@OTHER_LIBTOOL_OPT@
125 # Environment to run shared python without installed libraries
126 RUNSHARED=       @RUNSHARED@
128 # Modes for directories, executables and data files created by the
129 # install process.  Default to user-only-writable for all file types.
130 DIRMODE=        755
131 EXEMODE=        755
132 FILEMODE=       644
134 # configure script arguments
135 CONFIG_ARGS=    @CONFIG_ARGS@
138 # Subdirectories with code
139 SRCDIRS=        @SRCDIRS@
141 # Other subdirectories
142 SUBDIRSTOO=     Include Lib Misc Demo
144 # Files and directories to be distributed
145 CONFIGFILES=    configure configure.in acconfig.h pyconfig.h.in Makefile.pre.in
146 DISTFILES=      README ChangeLog $(CONFIGFILES)
147 DISTDIRS=       $(SUBDIRS) $(SUBDIRSTOO) Ext-dummy
148 DIST=           $(DISTFILES) $(DISTDIRS)
151 LIBRARY=        @LIBRARY@
152 LDLIBRARY=      @LDLIBRARY@
153 BLDLIBRARY=     @BLDLIBRARY@
154 DLLLIBRARY=     @DLLLIBRARY@
155 LDLIBRARYDIR=   @LDLIBRARYDIR@
156 INSTSONAME=     @INSTSONAME@
159 LIBS=           @LIBS@
160 LIBM=           @LIBM@
161 LIBC=           @LIBC@
162 SYSLIBS=        $(LIBM) $(LIBC)
163 SHLIBS=         @SHLIBS@
165 THREADOBJ=      @THREADOBJ@
166 DLINCLDIR=      @DLINCLDIR@
167 DYNLOADFILE=    @DYNLOADFILE@
168 MACHDEP_OBJS=   @MACHDEP_OBJS@
169 UNICODE_OBJS=   @UNICODE_OBJS@
171 PYTHON=         python$(EXE)
172 BUILDPYTHON=    python$(BUILDEXE)
174 # === Definitions added by makesetup ===
177 ##########################################################################
178 # Modules
179 MODULE_OBJS=    \
180                 Modules/config.o \
181                 Modules/getpath.o \
182                 Modules/main.o \
183                 Modules/gcmodule.o
185 # Used of signalmodule.o is not available
186 SIGNAL_OBJS=    @SIGNAL_OBJS@
189 ##########################################################################
190 # Grammar
191 GRAMMAR_H=      $(srcdir)/Include/graminit.h
192 GRAMMAR_C=      $(srcdir)/Python/graminit.c
193 GRAMMAR_INPUT=  $(srcdir)/Grammar/Grammar
196 ##########################################################################
197 # Parser
198 PGEN=           Parser/pgen$(EXE)
200 POBJS=          \
201                 Parser/acceler.o \
202                 Parser/grammar1.o \
203                 Parser/listnode.o \
204                 Parser/node.o \
205                 Parser/parser.o \
206                 Parser/parsetok.o \
207                 Parser/bitset.o \
208                 Parser/metagrammar.o \
209                 Parser/firstsets.o \
210                 Parser/grammar.o \
211                 Parser/pgen.o
213 PARSER_OBJS=    $(POBJS) Parser/myreadline.o Parser/tokenizer.o
215 PGOBJS=         \
216                 Objects/obmalloc.o \
217                 Python/mysnprintf.o \
218                 Parser/tokenizer_pgen.o \
219                 Parser/printgrammar.o \
220                 Parser/pgenmain.o
222 PGENOBJS=       $(PGENMAIN) $(POBJS) $(PGOBJS)
224 ##########################################################################
225 # AST
226 AST_H_DIR=      $(srcdir)/Include
227 AST_H=          $(AST_H_DIR)/Python-ast.h
228 AST_C_DIR=      $(srcdir)/Python
229 AST_C=          $(AST_C_DIR)/Python-ast.c
230 AST_ASDL=       $(srcdir)/Parser/Python.asdl
232 ASDLGEN_FILES=  $(srcdir)/Parser/asdl.py $(srcdir)/Parser/asdl_c.py
233 # XXX Note that a build now requires Python exist before the build starts
234 ASDLGEN=        $(srcdir)/Parser/asdl_c.py
236 ##########################################################################
237 # Python
238 PYTHON_OBJS=    \
239                 Python/Python-ast.o \
240                 Python/asdl.o \
241                 Python/ast.o \
242                 Python/bltinmodule.o \
243                 Python/ceval.o \
244                 Python/compile.o \
245                 Python/codecs.o \
246                 Python/errors.o \
247                 Python/frozen.o \
248                 Python/frozenmain.o \
249                 Python/future.o \
250                 Python/getargs.o \
251                 Python/getcompiler.o \
252                 Python/getcopyright.o \
253                 Python/getmtime.o \
254                 Python/getplatform.o \
255                 Python/getversion.o \
256                 Python/graminit.o \
257                 Python/import.o \
258                 Python/importdl.o \
259                 Python/marshal.o \
260                 Python/modsupport.o \
261                 Python/mystrtoul.o \
262                 Python/mysnprintf.o \
263                 Python/pyarena.o \
264                 Python/pyfpe.o \
265                 Python/pystate.o \
266                 Python/pythonrun.o \
267                 Python/structmember.o \
268                 Python/symtable.o \
269                 Python/sysmodule.o \
270                 Python/traceback.o \
271                 Python/getopt.o \
272                 Python/pystrtod.o \
273                 Python/$(DYNLOADFILE) \
274                 $(MACHDEP_OBJS) \
275                 $(THREADOBJ)
278 ##########################################################################
279 # Objects
280 OBJECT_OBJS=    \
281                 Objects/abstract.o \
282                 Objects/boolobject.o \
283                 Objects/bufferobject.o \
284                 Objects/cellobject.o \
285                 Objects/classobject.o \
286                 Objects/cobject.o \
287                 Objects/codeobject.o \
288                 Objects/complexobject.o \
289                 Objects/descrobject.o \
290                 Objects/enumobject.o \
291                 Objects/exceptions.o \
292                 Objects/genobject.o \
293                 Objects/fileobject.o \
294                 Objects/floatobject.o \
295                 Objects/frameobject.o \
296                 Objects/funcobject.o \
297                 Objects/intobject.o \
298                 Objects/iterobject.o \
299                 Objects/listobject.o \
300                 Objects/longobject.o \
301                 Objects/dictobject.o \
302                 Objects/methodobject.o \
303                 Objects/moduleobject.o \
304                 Objects/object.o \
305                 Objects/obmalloc.o \
306                 Objects/rangeobject.o \
307                 Objects/setobject.o \
308                 Objects/sliceobject.o \
309                 Objects/stringobject.o \
310                 Objects/structseq.o \
311                 Objects/tupleobject.o \
312                 Objects/typeobject.o \
313                 Objects/weakrefobject.o \
314                 $(UNICODE_OBJS)
317 ##########################################################################
318 # objects that get linked into the Python library
319 LIBRARY_OBJS=   \
320                 Modules/getbuildinfo.o \
321                 $(PARSER_OBJS) \
322                 $(OBJECT_OBJS) \
323                 $(PYTHON_OBJS) \
324                 $(MODULE_OBJS) \
325                 $(SIGNAL_OBJS) \
326                 $(MODOBJS)
328 #########################################################################
329 # Rules
331 # Default target
332 all:            $(BUILDPYTHON) oldsharedmods sharedmods
334 # Build the interpreter
335 $(BUILDPYTHON): Modules/python.o $(LIBRARY) $(LDLIBRARY)
336                 $(LINKCC) $(LDFLAGS) $(LINKFORSHARED) -o $@ \
337                         Modules/python.o \
338                         $(BLDLIBRARY) $(LIBS) $(MODLIBS) $(SYSLIBS) $(LDLAST)
340 platform: $(BUILDPYTHON)
341         $(RUNSHARED) ./$(BUILDPYTHON) -E -c 'import sys ; from distutils.util import get_platform ; print get_platform()+"-"+sys.version[0:3]' >platform
344 # Build the shared modules
345 sharedmods: $(BUILDPYTHON)
346         case $$MAKEFLAGS in \
347         *-s*) $(RUNSHARED) CC='$(CC)' LDSHARED='$(BLDSHARED)' OPT='$(OPT)' ./$(BUILDPYTHON) -E $(srcdir)/setup.py -q build;; \
348         *) $(RUNSHARED) CC='$(CC)' LDSHARED='$(BLDSHARED)' OPT='$(OPT)' ./$(BUILDPYTHON) -E $(srcdir)/setup.py build;; \
349         esac
351 # Build static library
352 # avoid long command lines, same as LIBRARY_OBJS
353 $(LIBRARY): $(LIBRARY_OBJS)
354         -rm -f $@
355         $(AR) cr $@ Modules/getbuildinfo.o
356         $(AR) cr $@ $(PARSER_OBJS)
357         $(AR) cr $@ $(OBJECT_OBJS)
358         $(AR) cr $@ $(PYTHON_OBJS)
359         $(AR) cr $@ $(MODULE_OBJS) $(SIGNAL_OBJS)
360         $(AR) cr $@ $(MODOBJS)
361         $(RANLIB) $@
363 libpython$(VERSION).so: $(LIBRARY_OBJS)
364         if test $(INSTSONAME) != $(LDLIBRARY); then \
365                 $(LDSHARED) -Wl,-h$(INSTSONAME) -o $(INSTSONAME) $(LIBRARY_OBJS) $(SHLIBS) $(LIBC) $(LIBM); \
366                 $(LN) -f $(INSTSONAME) $@; \
367         else\
368                 $(LDSHARED) -o $@ $(LIBRARY_OBJS) $(SHLIBS) $(LIBC) $(LIBM); \
369         fi
371 libpython$(VERSION).sl: $(LIBRARY_OBJS)
372         $(LDSHARED) -o $@ $(LIBRARY_OBJS) $(SHLIBS) $(LIBC) $(LIBM)
374 # This rule is here for OPENSTEP/Rhapsody/MacOSX. It builds a temporary
375 # minimal framework (not including the Lib directory and such) in the current
376 # directory.
377 RESSRCDIR=$(srcdir)/Mac/Resources/framework
378 $(PYTHONFRAMEWORKDIR)/Versions/$(VERSION)/$(PYTHONFRAMEWORK): \
379                 $(LIBRARY) \
380                 $(RESSRCDIR)/Info.plist \
381                 $(RESSRCDIR)/version.plist \
382                 $(RESSRCDIR)/English.lproj/InfoPlist.strings
383         $(INSTALL) -d -m $(DIRMODE) $(PYTHONFRAMEWORKDIR)/Versions/$(VERSION)
384         if test "${UNIVERSALSDK}"; then \
385                 $(CC) -o $(LDLIBRARY) -arch i386 -arch ppc -dynamiclib \
386                         -isysroot "${UNIVERSALSDK}" \
387                         -all_load $(LIBRARY) -Wl,-single_module \
388                         -install_name $(DESTDIR)$(PYTHONFRAMEWORKINSTALLDIR)/Versions/$(VERSION)/Python \
389                         -compatibility_version $(VERSION) \
390                         -current_version $(VERSION); \
391         else \
392                 libtool -o $(LDLIBRARY) -dynamic $(OTHER_LIBTOOL_OPT) $(LIBRARY) \
393                         @LIBTOOL_CRUFT@ ;\
394         fi
395         $(INSTALL) -d -m $(DIRMODE)  \
396                 $(PYTHONFRAMEWORKDIR)/Versions/$(VERSION)/Resources/English.lproj
397         $(INSTALL_DATA) $(RESSRCDIR)/Info.plist \
398                 $(PYTHONFRAMEWORKDIR)/Versions/$(VERSION)/Resources/Info.plist
399         $(INSTALL_DATA) $(RESSRCDIR)/version.plist \
400                 $(PYTHONFRAMEWORKDIR)/Versions/$(VERSION)/Resources/version.plist
401         $(INSTALL_DATA) $(RESSRCDIR)/English.lproj/InfoPlist.strings \
402                 $(PYTHONFRAMEWORKDIR)/Versions/$(VERSION)/Resources/English.lproj/InfoPlist.strings
403         $(LN) -fsn $(VERSION) $(PYTHONFRAMEWORKDIR)/Versions/Current
404         $(LN) -fsn Versions/Current/$(PYTHONFRAMEWORK) $(PYTHONFRAMEWORKDIR)/$(PYTHONFRAMEWORK)
405         $(LN) -fsn Versions/Current/Headers $(PYTHONFRAMEWORKDIR)/Headers
406         $(LN) -fsn Versions/Current/Resources $(PYTHONFRAMEWORKDIR)/Resources
408 # This rule builds the Cygwin Python DLL and import library if configured
409 # for a shared core library; otherwise, this rule is a noop.
410 $(DLLLIBRARY) libpython$(VERSION).dll.a: $(LIBRARY_OBJS)
411         if test -n "$(DLLLIBRARY)"; then \
412                 $(LDSHARED) -Wl,--out-implib=$@ -o $(DLLLIBRARY) $^ \
413                         $(LIBS) $(MODLIBS) $(SYSLIBS); \
414         else true; \
415         fi
418 oldsharedmods: $(SHAREDMODS)
421 Makefile Modules/config.c: Makefile.pre \
422                                 $(srcdir)/Modules/config.c.in \
423                                 $(MAKESETUP) \
424                                 Modules/Setup.config \
425                                 Modules/Setup \
426                                 Modules/Setup.local
427         $(SHELL) $(MAKESETUP) -c $(srcdir)/Modules/config.c.in \
428                                 -s Modules \
429                                 Modules/Setup.config \
430                                 Modules/Setup.local \
431                                 Modules/Setup
432         @mv config.c Modules
433         @echo "The Makefile was updated, you may need to re-run make."
436 Modules/Setup: $(srcdir)/Modules/Setup.dist
437         @if test -f Modules/Setup; then \
438                 echo "-----------------------------------------------"; \
439                 echo "Modules/Setup.dist is newer than Modules/Setup;"; \
440                 echo "check to make sure you have all the updates you"; \
441                 echo "need in your Modules/Setup file."; \
442                 echo "Usually, copying Setup.dist to Setup will work."; \
443                 echo "-----------------------------------------------"; \
444         fi
446 ############################################################################
447 # Special rules for object files
449 Modules/getbuildinfo.o: $(PARSER_OBJS) \
450                 $(OBJECT_OBJS) \
451                 $(PYTHON_OBJS) \
452                 $(MODULE_OBJS) \
453                 $(SIGNAL_OBJS) \
454                 $(MODOBJS) \
455                 $(srcdir)/Modules/getbuildinfo.c
456         $(CC) -c $(PY_CFLAGS) -DSVNVERSION=\"`LANG=C $(SVNVERSION)`\" -o $@ $(srcdir)/Modules/getbuildinfo.c
458 Modules/getpath.o: $(srcdir)/Modules/getpath.c Makefile
459         $(CC) -c $(PY_CFLAGS) -DPYTHONPATH='"$(PYTHONPATH)"' \
460                 -DPREFIX='"$(prefix)"' \
461                 -DEXEC_PREFIX='"$(exec_prefix)"' \
462                 -DVERSION='"$(VERSION)"' \
463                 -DVPATH='"$(VPATH)"' \
464                 -o $@ $(srcdir)/Modules/getpath.c
466 Modules/python.o: $(srcdir)/Modules/python.c
467         $(MAINCC) -c $(PY_CFLAGS) -o $@ $(srcdir)/Modules/python.c
470 $(GRAMMAR_H) $(GRAMMAR_C): $(PGEN) $(GRAMMAR_INPUT)
471                 -$(PGEN) $(GRAMMAR_INPUT) $(GRAMMAR_H) $(GRAMMAR_C)
473 $(PGEN):        $(PGENOBJS)
474                 $(CC) $(OPT) $(LDFLAGS) $(PGENOBJS) $(LIBS) -o $(PGEN)
476 Parser/grammar.o:       $(srcdir)/Parser/grammar.c \
477                                 $(srcdir)/Include/token.h \
478                                 $(srcdir)/Include/grammar.h
479 Parser/metagrammar.o:   $(srcdir)/Parser/metagrammar.c
481 Parser/tokenizer_pgen.o:        $(srcdir)/Parser/tokenizer.c
483 $(AST_H): $(AST_ASDL) $(ASDLGEN_FILES)
484         $(ASDLGEN) -h $(AST_H_DIR) $(AST_ASDL)
486 $(AST_C): $(AST_ASDL) $(ASDLGEN_FILES)
487         $(ASDLGEN) -c $(AST_C_DIR) $(AST_ASDL)
488         
489 Python/compile.o Python/symtable.o: $(GRAMMAR_H) $(AST_H)
491 Python/getplatform.o: $(srcdir)/Python/getplatform.c
492                 $(CC) -c $(PY_CFLAGS) -DPLATFORM='"$(MACHDEP)"' -o $@ $(srcdir)/Python/getplatform.c
494 Python/importdl.o: $(srcdir)/Python/importdl.c
495                 $(CC) -c $(PY_CFLAGS) -I$(DLINCLDIR) -o $@ $(srcdir)/Python/importdl.c
497 Objects/unicodectype.o: $(srcdir)/Objects/unicodectype.c \
498                                 $(srcdir)/Objects/unicodetype_db.h
500 ############################################################################
501 # Header files
503 PYTHON_HEADERS= \
504                 Include/Python.h \
505                 Include/Python-ast.h \
506                 Include/asdl.h \
507                 Include/abstract.h \
508                 Include/boolobject.h \
509                 Include/bufferobject.h \
510                 Include/ceval.h \
511                 Include/classobject.h \
512                 Include/cobject.h \
513                 Include/code.h \
514                 Include/codecs.h \
515                 Include/compile.h \
516                 Include/complexobject.h \
517                 Include/descrobject.h \
518                 Include/dictobject.h \
519                 Include/enumobject.h \
520                 Include/genobject.h \
521                 Include/fileobject.h \
522                 Include/floatobject.h \
523                 Include/funcobject.h \
524                 Include/import.h \
525                 Include/intobject.h \
526                 Include/intrcheck.h \
527                 Include/iterobject.h \
528                 Include/listobject.h \
529                 Include/longobject.h \
530                 Include/methodobject.h \
531                 Include/modsupport.h \
532                 Include/moduleobject.h \
533                 Include/object.h \
534                 Include/objimpl.h \
535                 Include/patchlevel.h \
536                 Include/pyarena.h \
537                 Include/pydebug.h \
538                 Include/pyerrors.h \
539                 Include/pyfpe.h \
540                 Include/pymem.h \
541                 Include/pyport.h \
542                 Include/pystate.h \
543                 Include/pythonrun.h \
544                 Include/rangeobject.h \
545                 Include/setobject.h \
546                 Include/sliceobject.h \
547                 Include/stringobject.h \
548                 Include/structseq.h \
549                 Include/structmember.h \
550                 Include/symtable.h \
551                 Include/sysmodule.h \
552                 Include/traceback.h \
553                 Include/tupleobject.h \
554                 Include/unicodeobject.h \
555                 Include/weakrefobject.h \
556                 pyconfig.h
558 $(LIBRARY_OBJS) $(MODOBJS) Modules/python.o: $(PYTHON_HEADERS)
561 ######################################################################
563 # Test the interpreter (twice, once without .pyc files, once with)
564 # In the past, we've had problems where bugs in the marshalling or
565 # elsewhere caused bytecode read from .pyc files to behave differently
566 # than bytecode generated directly from a .py source file.  Sometimes
567 # the bytecode read from a .pyc file had the bug, somtimes the directly
568 # generated bytecode.  This is sometimes a very shy bug needing a lot of
569 # sample data.
571 TESTOPTS=       -l $(EXTRATESTOPTS)
572 TESTPROG=       $(srcdir)/Lib/test/regrtest.py
573 TESTPYTHON=     $(RUNSHARED) ./$(BUILDPYTHON) -E -tt
574 test:           all platform
575                 -find $(srcdir)/Lib -name '*.py[co]' -print | xargs rm -f
576                 -$(TESTPYTHON) $(TESTPROG) $(TESTOPTS)
577                 $(TESTPYTHON) $(TESTPROG) $(TESTOPTS)
579 testall:        all platform
580                 -find $(srcdir)/Lib -name '*.py[co]' -print | xargs rm -f
581                 -$(TESTPYTHON) $(TESTPROG) $(TESTOPTS) -uall
582                 $(TESTPYTHON) $(TESTPROG) $(TESTOPTS) -uall
584 #  Run the unitests for both architectures in a Universal build on OSX
585 #  Must be run on an Intel box.
586 testuniversal:  all platform
587                 if [ `arch` != 'i386' ];then \
588                         echo "This can only be used on OSX/i386" ;\
589                         exit 1 ;\
590                 fi
591                 -find $(srcdir)/Lib -name '*.py[co]' -print | xargs rm -f
592                 -$(TESTPYTHON) $(TESTPROG) $(TESTOPTS) -uall
593                 $(TESTPYTHON) $(TESTPROG) $(TESTOPTS) -uall
594                 $(RUNSHARED) /usr/libexec/oah/translate ./$(BUILDPYTHON) -E -tt $(TESTPROG) $(TESTOPTS) -uall
597 # Like testall, but with a single pass only
598 buildbottest:   all platform
599                 $(TESTPYTHON) $(TESTPROG) $(TESTOPTS) -uall -rw
601 QUICKTESTOPTS=  $(TESTOPTS) -x test_thread test_signal test_strftime \
602                 test_unicodedata test_re test_sre test_select test_poll \
603                 test_linuxaudiodev test_struct test_sunaudiodev test_zlib
604 quicktest:      all platform
605                 -find $(srcdir)/Lib -name '*.py[co]' -print | xargs rm -f
606                 -$(TESTPYTHON) $(TESTPROG) $(QUICKTESTOPTS)
607                 $(TESTPYTHON) $(TESTPROG) $(QUICKTESTOPTS)
609 MEMTESTOPTS=    $(QUICKTESTOPTS) -x test_dl test___all__ test_fork1 \
610                 test_longexp
611 memtest:        all platform
612                 -rm -f $(srcdir)/Lib/test/*.py[co]
613                 -$(TESTPYTHON) $(TESTPROG) $(MEMTESTOPTS)
614                 $(TESTPYTHON) $(TESTPROG) $(MEMTESTOPTS)
616 # Install everything
617 install:        @FRAMEWORKINSTALLFIRST@ altinstall bininstall maninstall @FRAMEWORKINSTALLLAST@
619 # Install almost everything without disturbing previous versions
620 altinstall:     @FRAMEWORKALTINSTALLFIRST@ altbininstall libinstall inclinstall libainstall \
621                 sharedinstall oldsharedinstall @FRAMEWORKALTINSTALLLAST@
623 # Install shared libraries enabled by Setup
624 DESTDIRS=       $(exec_prefix) $(LIBDIR) $(BINLIBDEST) $(DESTSHARED)
626 oldsharedinstall: $(DESTSHARED) $(SHAREDMODS)
627                 @for i in X $(SHAREDMODS); do \
628                   if test $$i != X; then \
629                     echo $(INSTALL_SHARED) $$i $(DESTSHARED)/`basename $$i`; \
630                     $(INSTALL_SHARED) $$i $(DESTDIR)$(DESTSHARED)/`basename $$i`; \
631                   fi; \
632                 done
634 $(DESTSHARED):
635                 @for i in $(DESTDIRS); \
636                 do \
637                         if test ! -d $(DESTDIR)$$i; then \
638                                 echo "Creating directory $$i"; \
639                                 $(INSTALL) -d -m $(DIRMODE) $(DESTDIR)$$i; \
640                         else    true; \
641                         fi; \
642                 done
645 # Install the interpreter (by creating a hard link to python$(VERSION))
646 bininstall:     altbininstall
647         -if test -f $(DESTDIR)$(BINDIR)/$(PYTHON) -o -h $(DESTDIR)$(BINDIR)/$(PYTHON); \
648         then rm -f $(DESTDIR)$(BINDIR)/$(PYTHON); \
649         else true; \
650         fi
651         (cd $(DESTDIR)$(BINDIR); $(LN) python$(VERSION)$(EXE) $(PYTHON))
653 # Install the interpreter with $(VERSION) affixed
654 # This goes into $(exec_prefix)
655 altbininstall:  $(BUILDPYTHON)
656         @for i in $(BINDIR) $(LIBDIR); \
657         do \
658                 if test ! -d $(DESTDIR)$$i; then \
659                         echo "Creating directory $$i"; \
660                         $(INSTALL) -d -m $(DIRMODE) $(DESTDIR)$$i; \
661                 else    true; \
662                 fi; \
663         done
664         $(INSTALL_PROGRAM) $(BUILDPYTHON) $(DESTDIR)$(BINDIR)/python$(VERSION)$(EXE)
665         if test -f libpython$(VERSION)$(SO); then \
666                 if test "$(SO)" = .dll; then \
667                         $(INSTALL_SHARED) libpython$(VERSION)$(SO) $(DESTDIR)$(BINDIR); \
668                 else \
669                         $(INSTALL_SHARED) libpython$(VERSION)$(SO) $(DESTDIR)$(LIBDIR)/$(INSTSONAME); \
670                         if test libpython$(VERSION)$(SO) != $(INSTSONAME); then \
671                                 (cd $(DESTDIR)$(LIBDIR); $(LN) -sf $(INSTSONAME) libpython$(VERSION)$(SO)); \
672                         fi \
673                 fi; \
674         else    true; \
675         fi
677 # Install the manual page
678 maninstall:
679         @for i in $(MANDIR) $(MANDIR)/man1; \
680         do \
681                 if test ! -d $(DESTDIR)$$i; then \
682                         echo "Creating directory $$i"; \
683                         $(INSTALL) -d -m $(DIRMODE) $(DESTDIR)$$i; \
684                 else    true; \
685                 fi; \
686         done
687         $(INSTALL_DATA) $(srcdir)/Misc/python.man \
688                 $(DESTDIR)$(MANDIR)/man1/python.1
690 # Install the library
691 PLATDIR=        plat-$(MACHDEP)
692 EXTRAPLATDIR= @EXTRAPLATDIR@
693 EXTRAMACHDEPPATH=@EXTRAMACHDEPPATH@
694 MACHDEPS=       $(PLATDIR) $(EXTRAPLATDIR)
695 XMLLIBSUBDIRS=  xmlcore xmlcore/dom xmlcore/etree xmlcore/parsers xmlcore/sax
696 PLATMACDIRS= plat-mac plat-mac/Carbon plat-mac/lib-scriptpackages \
697         plat-mac/lib-scriptpackages/_builtinSuites \
698         plat-mac/lib-scriptpackages/CodeWarrior \
699         plat-mac/lib-scriptpackages/Explorer \
700         plat-mac/lib-scriptpackages/Finder \
701         plat-mac/lib-scriptpackages/Netscape \
702         plat-mac/lib-scriptpackages/StdSuites \
703         plat-mac/lib-scriptpackages/SystemEvents \
704         plat-mac/lib-scriptpackages/Terminal 
705 PLATMACPATH=:plat-mac:plat-mac/lib-scriptpackages
706 LIBSUBDIRS=     lib-tk site-packages test test/output test/data \
707                 test/decimaltestdata \
708                 encodings compiler hotshot \
709                 email email/mime email/test email/test/data \
710                 sqlite3 sqlite3/test \
711                 logging bsddb bsddb/test csv wsgiref \
712                 ctypes ctypes/test ctypes/macholib idlelib idlelib/Icons \
713                 distutils distutils/command distutils/tests $(XMLLIBSUBDIRS) \
714                 setuptools setuptools/command setuptools/tests setuptools.egg-info \
715                 curses $(MACHDEPS)
716 libinstall:     $(BUILDPYTHON) $(srcdir)/Lib/$(PLATDIR)
717         @for i in $(SCRIPTDIR) $(LIBDEST); \
718         do \
719                 if test ! -d $(DESTDIR)$$i; then \
720                         echo "Creating directory $$i"; \
721                         $(INSTALL) -d -m $(DIRMODE) $(DESTDIR)$$i; \
722                 else    true; \
723                 fi; \
724         done
725         @for d in $(LIBSUBDIRS); \
726         do \
727                 a=$(srcdir)/Lib/$$d; \
728                 if test ! -d $$a; then continue; else true; fi; \
729                 b=$(LIBDEST)/$$d; \
730                 if test ! -d $(DESTDIR)$$b; then \
731                         echo "Creating directory $$b"; \
732                         $(INSTALL) -d -m $(DIRMODE) $(DESTDIR)$$b; \
733                 else    true; \
734                 fi; \
735         done
736         @for i in $(srcdir)/Lib/*.py $(srcdir)/Lib/*.doc $(srcdir)/Lib/*.egg-info ; \
737         do \
738                 if test -x $$i; then \
739                         $(INSTALL_SCRIPT) $$i $(DESTDIR)$(LIBDEST); \
740                         echo $(INSTALL_SCRIPT) $$i $(LIBDEST); \
741                 else \
742                         $(INSTALL_DATA) $$i $(DESTDIR)$(LIBDEST); \
743                         echo $(INSTALL_DATA) $$i $(LIBDEST); \
744                 fi; \
745         done
746         @for d in $(LIBSUBDIRS); \
747         do \
748                 a=$(srcdir)/Lib/$$d; \
749                 if test ! -d $$a; then continue; else true; fi; \
750                 if test `ls $$a | wc -l` -lt 1; then continue; fi; \
751                 b=$(LIBDEST)/$$d; \
752                 for i in $$a/*; \
753                 do \
754                         case $$i in \
755                         *CVS) ;; \
756                         *.py[co]) ;; \
757                         *.orig) ;; \
758                         *~) ;; \
759                         *) \
760                                 if test -d $$i; then continue; fi; \
761                                 if test -x $$i; then \
762                                     echo $(INSTALL_SCRIPT) $$i $$b; \
763                                     $(INSTALL_SCRIPT) $$i $(DESTDIR)$$b; \
764                                 else \
765                                     echo $(INSTALL_DATA) $$i $$b; \
766                                     $(INSTALL_DATA) $$i $(DESTDIR)$$b; \
767                                 fi;; \
768                         esac; \
769                 done; \
770         done
771         $(INSTALL_DATA) $(srcdir)/LICENSE $(DESTDIR)$(LIBDEST)/LICENSE.txt
772         PYTHONPATH=$(DESTDIR)$(LIBDEST)  $(RUNSHARED) \
773                 ./$(BUILDPYTHON) -Wi -tt $(DESTDIR)$(LIBDEST)/compileall.py \
774                 -d $(LIBDEST) -f \
775                 -x 'bad_coding|badsyntax|site-packages' $(DESTDIR)$(LIBDEST)
776         PYTHONPATH=$(DESTDIR)$(LIBDEST) $(RUNSHARED) \
777                 ./$(BUILDPYTHON) -Wi -tt -O $(DESTDIR)$(LIBDEST)/compileall.py \
778                 -d $(LIBDEST) -f \
779                 -x 'bad_coding|badsyntax|site-packages' $(DESTDIR)$(LIBDEST)
780         -PYTHONPATH=$(DESTDIR)$(LIBDEST)  $(RUNSHARED) \
781                 ./$(BUILDPYTHON) -Wi -t $(DESTDIR)$(LIBDEST)/compileall.py \
782                 -d $(LIBDEST)/site-packages -f \
783                 -x badsyntax $(DESTDIR)$(LIBDEST)/site-packages
784         -PYTHONPATH=$(DESTDIR)$(LIBDEST) $(RUNSHARED) \
785                 ./$(BUILDPYTHON) -Wi -t -O $(DESTDIR)$(LIBDEST)/compileall.py \
786                 -d $(LIBDEST)/site-packages -f \
787                 -x badsyntax $(DESTDIR)$(LIBDEST)/site-packages
789 # Create the PLATDIR source directory, if one wasn't distributed..
790 $(srcdir)/Lib/$(PLATDIR):
791         mkdir $(srcdir)/Lib/$(PLATDIR)
792         cp $(srcdir)/Lib/plat-generic/regen $(srcdir)/Lib/$(PLATDIR)/regen
793         export PATH; PATH="`pwd`:$$PATH"; \
794         export PYTHONPATH; PYTHONPATH="`pwd`/Lib"; \
795         export DYLD_FRAMEWORK_PATH; DYLD_FRAMEWORK_PATH="`pwd`"; \
796         export EXE; EXE="$(BUILDEXE)"; \
797         cd $(srcdir)/Lib/$(PLATDIR); ./regen
799 # Install the include files
800 INCLDIRSTOMAKE=$(INCLUDEDIR) $(CONFINCLUDEDIR) $(INCLUDEPY) $(CONFINCLUDEPY)
801 inclinstall:
802         @for i in $(INCLDIRSTOMAKE); \
803         do \
804                 if test ! -d $(DESTDIR)$$i; then \
805                         echo "Creating directory $$i"; \
806                         $(INSTALL) -d -m $(DIRMODE) $(DESTDIR)$$i; \
807                 else    true; \
808                 fi; \
809         done
810         @for i in $(srcdir)/Include/*.h; \
811         do \
812                 echo $(INSTALL_DATA) $$i $(INCLUDEPY); \
813                 $(INSTALL_DATA) $$i $(DESTDIR)$(INCLUDEPY); \
814         done
815         $(INSTALL_DATA) pyconfig.h $(DESTDIR)$(CONFINCLUDEPY)/pyconfig.h
817 # Install the library and miscellaneous stuff needed for extending/embedding
818 # This goes into $(exec_prefix)
819 LIBPL=          $(LIBP)/config
820 libainstall:    all
821         @for i in $(LIBDIR) $(LIBP) $(LIBPL); \
822         do \
823                 if test ! -d $(DESTDIR)$$i; then \
824                         echo "Creating directory $$i"; \
825                         $(INSTALL) -d -m $(DIRMODE) $(DESTDIR)$$i; \
826                 else    true; \
827                 fi; \
828         done
829         @if test -d $(LIBRARY); then :; else \
830                 if test "$(PYTHONFRAMEWORKDIR)" = no-framework; then \
831                         if test "$(SO)" = .dll; then \
832                                 $(INSTALL_DATA) $(LDLIBRARY) $(DESTDIR)$(LIBPL) ; \
833                         else \
834                                 $(INSTALL_DATA) $(LIBRARY) $(DESTDIR)$(LIBPL)/$(LIBRARY) ; \
835                                 $(RANLIB) $(DESTDIR)$(LIBPL)/$(LIBRARY) ; \
836                         fi; \
837                 else \
838                         echo Skip install of $(LIBRARY) - use make frameworkinstall; \
839                 fi; \
840         fi
841         $(INSTALL_DATA) Modules/config.c $(DESTDIR)$(LIBPL)/config.c
842         $(INSTALL_DATA) Modules/python.o $(DESTDIR)$(LIBPL)/python.o
843         $(INSTALL_DATA) $(srcdir)/Modules/config.c.in $(DESTDIR)$(LIBPL)/config.c.in
844         $(INSTALL_DATA) Makefile $(DESTDIR)$(LIBPL)/Makefile
845         $(INSTALL_DATA) Modules/Setup $(DESTDIR)$(LIBPL)/Setup
846         $(INSTALL_DATA) Modules/Setup.local $(DESTDIR)$(LIBPL)/Setup.local
847         $(INSTALL_DATA) Modules/Setup.config $(DESTDIR)$(LIBPL)/Setup.config
848         $(INSTALL_SCRIPT) $(srcdir)/Modules/makesetup $(DESTDIR)$(LIBPL)/makesetup
849         $(INSTALL_SCRIPT) $(srcdir)/install-sh $(DESTDIR)$(LIBPL)/install-sh
850         # Substitution happens here, as the completely-expanded BINDIR
851         # is not available in configure
852         sed -e "s,@BINDIR@,$(BINDIR)," < $(srcdir)/Misc/python-config.in >python-config
853         $(INSTALL_SCRIPT) python-config $(DESTDIR)$(BINDIR)/python-config
854         rm python-config
855         @if [ -s Modules/python.exp -a \
856                 "`echo $(MACHDEP) | sed 's/^\(...\).*/\1/'`" = "aix" ]; then \
857                 echo; echo "Installing support files for building shared extension modules on AIX:"; \
858                 $(INSTALL_DATA) Modules/python.exp              \
859                                 $(DESTDIR)$(LIBPL)/python.exp;          \
860                 echo; echo "$(LIBPL)/python.exp";               \
861                 $(INSTALL_SCRIPT) $(srcdir)/Modules/makexp_aix  \
862                                 $(DESTDIR)$(LIBPL)/makexp_aix;          \
863                 echo "$(LIBPL)/makexp_aix";                     \
864                 $(INSTALL_SCRIPT) $(srcdir)/Modules/ld_so_aix   \
865                                 $(DESTDIR)$(LIBPL)/ld_so_aix;           \
866                 echo "$(LIBPL)/ld_so_aix";                      \
867                 echo; echo "See Misc/AIX-NOTES for details.";   \
868         else true; \
869         fi
870         @case "$(MACHDEP)" in beos*) \
871                 echo; echo "Installing support files for building shared extension modules on BeOS:"; \
872                 $(INSTALL_DATA) Misc/BeOS-NOTES $(DESTDIR)$(LIBPL)/README;      \
873                 echo; echo "$(LIBPL)/README";                   \
874                 $(INSTALL_SCRIPT) Modules/ar_beos $(DESTDIR)$(LIBPL)/ar_beos; \
875                 echo "$(LIBPL)/ar_beos";                        \
876                 $(INSTALL_SCRIPT) Modules/ld_so_beos $(DESTDIR)$(LIBPL)/ld_so_beos; \
877                 echo "$(LIBPL)/ld_so_beos";                     \
878                 echo; echo "See Misc/BeOS-NOTES for details.";  \
879                 ;; \
880         esac
882 # Install the dynamically loadable modules
883 # This goes into $(exec_prefix)
884 sharedinstall:
885         $(RUNSHARED) ./$(BUILDPYTHON) -E $(srcdir)/setup.py install \
886                 --prefix=$(prefix) \
887                 --install-scripts=$(BINDIR) \
888                 --install-platlib=$(DESTSHARED) \
889                 --root=/$(DESTDIR)
891 # Here are a couple of targets for MacOSX again, to install a full
892 # framework-based Python. frameworkinstall installs everything, the
893 # subtargets install specific parts. Much of the actual work is offloaded to
894 # the Makefile in Mac
897 # This target is here for backward compatiblity, previous versions of Python
898 # hadn't integrated framework installation in the normal install process.
899 frameworkinstall: install
901 # On install, we re-make the framework
902 # structure in the install location, /Library/Frameworks/ or the argument to
903 # --enable-framework. If --enable-framework has been specified then we have
904 # automatically set prefix to the location deep down in the framework, so we
905 # only have to cater for the structural bits of the framework.
907 frameworkinstallframework: frameworkinstallstructure install frameworkinstallmaclib
909 frameworkinstallstructure:      $(LDLIBRARY)
910         @if test "$(PYTHONFRAMEWORKDIR)" = no-framework; then \
911                 echo Not configured with --enable-framework; \
912                 exit 1; \
913         else true; \
914         fi
915         @for i in $(prefix)/Resources/English.lproj $(prefix)/lib; do\
916                 if test ! -d $(DESTDIR)$$i; then \
917                         echo "Creating directory $(DESTDIR)$$i"; \
918                         $(INSTALL) -d -m $(DIRMODE) $(DESTDIR)$$i; \
919                 else    true; \
920                 fi; \
921         done
922         $(LN) -fsn include/python$(VERSION) $(DESTDIR)$(prefix)/Headers
923         $(INSTALL_DATA) $(RESSRCDIR)/Info.plist $(DESTDIR)$(prefix)/Resources/Info.plist
924         $(INSTALL_DATA) $(RESSRCDIR)/version.plist $(DESTDIR)$(prefix)/Resources/version.plist
925         $(INSTALL_DATA) $(RESSRCDIR)/English.lproj/InfoPlist.strings \
926                 $(DESTDIR)$(prefix)/Resources/English.lproj/InfoPlist.strings
927         $(LN) -fsn $(VERSION) $(DESTDIR)$(PYTHONFRAMEWORKINSTALLDIR)/Versions/Current
928         $(LN) -fsn Versions/Current/Python $(DESTDIR)$(PYTHONFRAMEWORKINSTALLDIR)/Python
929         $(LN) -fsn Versions/Current/Headers $(DESTDIR)$(PYTHONFRAMEWORKINSTALLDIR)/Headers
930         $(LN) -fsn Versions/Current/Resources $(DESTDIR)$(PYTHONFRAMEWORKINSTALLDIR)/Resources
931         $(INSTALL_SHARED) $(LDLIBRARY) $(DESTDIR)$(PYTHONFRAMEWORKPREFIX)/$(LDLIBRARY)
933 # This installs Mac/Lib into the framework
934 # Install a number of symlinks to keep software that expects a normal unix
935 # install (which includes python-config) happy.
936 frameworkinstallmaclib:
937         ln -s "../../../Python" "$(DESTDIR)$(prefix)/lib/python$(VERSION)/config/libpython$(VERSION).a"
938         cd Mac && $(MAKE) installmacsubtree DESTDIR="$(DESTDIR)"
940 # This installs the IDE, the Launcher and other apps into /Applications
941 frameworkinstallapps:
942         cd Mac && $(MAKE) installapps DESTDIR="$(DESTDIR)"
944 # This install the unix python and pythonw tools in /usr/local/bin
945 frameworkinstallunixtools:
946         cd Mac && $(MAKE) installunixtools DESTDIR="$(DESTDIR)"
948 frameworkaltinstallunixtools:
949         cd Mac && $(MAKE) altinstallunixtools DESTDIR="$(DESTDIR)"
951 # This installs the Demos and Tools into the applications directory.
952 # It is not part of a normal frameworkinstall
953 frameworkinstallextras:
954         cd Mac && Make installextras DESTDIR="$(DESTDIR)"
956 # This installs a few of the useful scripts in Tools/scripts
957 scriptsinstall:
958         SRCDIR=$(srcdir) $(RUNSHARED) \
959         ./$(BUILDPYTHON) $(srcdir)/Tools/scripts/setup.py install \
960         --prefix=$(prefix) \
961         --install-scripts=$(BINDIR) \
962         --root=/$(DESTDIR)
964 # Build the toplevel Makefile
965 Makefile.pre: Makefile.pre.in config.status
966         CONFIG_FILES=Makefile.pre CONFIG_HEADERS= $(SHELL) config.status
967         $(MAKE) -f Makefile.pre Makefile
969 # Run the configure script.
970 config.status:  $(srcdir)/configure
971         $(SHELL) $(srcdir)/configure $(CONFIG_ARGS)
973 .PRECIOUS: config.status $(BUILDPYTHON) Makefile Makefile.pre
975 # Some make's put the object file in the current directory
976 .c.o:
977         $(CC) -c $(PY_CFLAGS) -o $@ $<
979 # Run reindent on the library
980 reindent:
981         ./python$(EXEEXT) $(srcdir)/Tools/scripts/reindent.py -r $(srcdir)/Lib
983 # Rerun configure with the same options as it was run last time,
984 # provided the config.status script exists
985 recheck:
986         $(SHELL) config.status --recheck
987         $(SHELL) config.status
989 # Rebuild the configure script from configure.in; also rebuild pyconfig.h.in
990 autoconf:
991         (cd $(srcdir); autoconf)
992         (cd $(srcdir); autoheader)
994 # Create a tags file for vi
995 tags::
996         cd $(srcdir); \
997         ctags -w -t Include/*.h; \
998         for i in $(SRCDIRS); do ctags -w -t -a $$i/*.[ch]; \
999         done; \
1000         sort -o tags tags
1002 # Create a tags file for GNU Emacs
1003 TAGS::
1004         cd $(srcdir); \
1005         etags Include/*.h; \
1006         for i in $(SRCDIRS); do etags -a $$i/*.[ch]; done
1008 # Sanitation targets -- clean leaves libraries, executables and tags
1009 # files, which clobber removes those as well
1010 pycremoval:
1011         find $(srcdir) -name '*.py[co]' -exec rm -f {} ';'
1013 clean: pycremoval
1014         find . -name '*.o' -exec rm -f {} ';'
1015         find . -name '*.s[ol]' -exec rm -f {} ';'
1016         find $(srcdir)/build -name 'fficonfig.h' -exec rm -f {} ';' || true
1017         find $(srcdir)/build -name 'fficonfig.py' -exec rm -f {} ';' || true
1019 clobber: clean
1020         -rm -f $(BUILDPYTHON) $(PGEN) $(LIBRARY) $(LDLIBRARY) $(DLLLIBRARY) \
1021                 tags TAGS \
1022                 config.cache config.log pyconfig.h Modules/config.c
1023         -rm -rf build platform
1024         -rm -rf $(PYTHONFRAMEWORKDIR)
1026 # Make things extra clean, before making a distribution:
1027 # remove all generated files, even Makefile[.pre]
1028 # Keep configure and Python-ast.[ch], it's possible they can't be generated
1029 distclean: clobber
1030         -rm -f core Makefile Makefile.pre config.status \
1031                 Modules/Setup Modules/Setup.local Modules/Setup.config
1032         find $(srcdir) '(' -name '*.fdc' -o -name '*~' \
1033                            -o -name '[@,#]*' -o -name '*.old' \
1034                            -o -name '*.orig' -o -name '*.rej' \
1035                            -o -name '*.bak' ')' \
1036                            -exec rm -f {} ';'
1038 # Check for smelly exported symbols (not starting with Py/_Py)
1039 smelly: all
1040         nm -p $(LIBRARY) | \
1041                 sed -n "/ [TDB] /s/.* //p" | grep -v "^_*Py" | sort -u; \
1043 # Find files with funny names
1044 funny:
1045         find $(DISTDIRS) -type d \
1046                 -o -name '*.[chs]' \
1047                 -o -name '*.py' \
1048                 -o -name '*.doc' \
1049                 -o -name '*.sty' \
1050                 -o -name '*.bib' \
1051                 -o -name '*.dat' \
1052                 -o -name '*.el' \
1053                 -o -name '*.fd' \
1054                 -o -name '*.in' \
1055                 -o -name '*.tex' \
1056                 -o -name '*,[vpt]' \
1057                 -o -name 'Setup' \
1058                 -o -name 'Setup.*' \
1059                 -o -name README \
1060                 -o -name Makefile \
1061                 -o -name ChangeLog \
1062                 -o -name Repository \
1063                 -o -name Root \
1064                 -o -name Entries \
1065                 -o -name Tag \
1066                 -o -name tags \
1067                 -o -name TAGS \
1068                 -o -name .cvsignore \
1069                 -o -name MANIFEST \
1070                 -o -print
1072 # Dependencies
1074 Python/thread.o: @THREADHEADERS@
1076 # Declare targets that aren't real files
1077 .PHONY: all sharedmods oldsharedmods test quicktest memtest
1078 .PHONY: install altinstall oldsharedinstall bininstall altbininstall
1079 .PHONY: maninstall libinstall inclinstall libainstall sharedinstall
1080 .PHONY: frameworkinstall frameworkinstallframework frameworkinstallstructure
1081 .PHONY: frameworkinstallmaclib frameworkinstallapps frameworkinstallunixtools
1082 .PHONY: frameworkaltinstallunixtools recheck autoconf clean clobber distclean 
1083 .PHONY: smelly funny
1085 # IF YOU PUT ANYTHING HERE IT WILL GO AWAY