AddressList.__str__(): Get rid of useless, and broken method. Closes
[python/dscho.git] / Makefile.pre.in
blob91fdbd8acd321b04563c53513e3774d2d2cd67f5
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 LINKCC=         @LINKCC@
34 AR=             @AR@
35 RANLIB=         @RANLIB@
37 # Shell used by make (some versions default to the login shell, which is bad)
38 SHELL=          /bin/sh
40 # Use this to make a link between python$(VERSION) and python in $(BINDIR)
41 LN=             @LN@
43 # Portable install script (configure doesn't always guess right)
44 INSTALL=        @INSTALL@
45 INSTALL_PROGRAM=@INSTALL_PROGRAM@
46 INSTALL_SCRIPT= @INSTALL_SCRIPT@
47 INSTALL_DATA=   @INSTALL_DATA@
48 # Shared libraries must be installed with executable mode on some systems;
49 # rather than figuring out exactly which, we always give them executable mode.
50 # Also, making them read-only seems to be a good idea...
51 INSTALL_SHARED= ${INSTALL} -m 555
53 MAKESETUP=      $(srcdir)/Modules/makesetup
55 # Compiler options
56 OPT=            @OPT@
57 BASECFLAGS=     @BASECFLAGS@
58 CFLAGS=         $(BASECFLAGS) $(OPT)
59 CPPFLAGS=       -I. -I$(srcdir)/Include
60 LDFLAGS=        @LDFLAGS@
61 LDLAST=         @LDLAST@
62 SGI_ABI=        @SGI_ABI@
63 CCSHARED=       @CCSHARED@
64 LINKFORSHARED=  @LINKFORSHARED@
65 # Extra C flags added for building the interpreter object files.
66 CFLAGSFORSHARED=@CFLAGSFORSHARED@
67 # C flags used for building the interpreter object files
68 PY_CFLAGS=      $(CFLAGS) $(CPPFLAGS) $(CFLAGSFORSHARED) -DPy_BUILD_CORE
71 # Machine-dependent subdirectories
72 MACHDEP=        @MACHDEP@
74 # Install prefix for architecture-independent files
75 prefix=         @prefix@
77 # Install prefix for architecture-dependent files
78 exec_prefix=    @exec_prefix@
80 # Expanded directories
81 BINDIR=         $(exec_prefix)/bin
82 LIBDIR=         $(exec_prefix)/lib
83 MANDIR=         @mandir@
84 INCLUDEDIR=     @includedir@
85 CONFINCLUDEDIR= $(exec_prefix)/include
86 SCRIPTDIR=      $(prefix)/lib
88 # Detailed destination directories
89 BINLIBDEST=     $(LIBDIR)/python$(VERSION)
90 LIBDEST=        $(SCRIPTDIR)/python$(VERSION)
91 INCLUDEPY=      $(INCLUDEDIR)/python$(VERSION)
92 CONFINCLUDEPY=  $(CONFINCLUDEDIR)/python$(VERSION)
93 LIBP=           $(LIBDIR)/python$(VERSION)
95 # Symbols used for using shared libraries
96 SO=             @SO@
97 LDSHARED=       @LDSHARED@
98 BLDSHARED=      @BLDSHARED@
99 DESTSHARED=     $(BINLIBDEST)/lib-dynload
101 # Executable suffix (.exe on Windows and Mac OS X)
102 EXE=            @EXEEXT@
103 BUILDEXE=       @BUILDEXEEXT@
105 # Short name and location for Mac OS X Python framework
106 PYTHONFRAMEWORK=        @PYTHONFRAMEWORK@
107 PYTHONFRAMEWORKDIR=     @PYTHONFRAMEWORKDIR@
108 PYTHONFRAMEWORKPREFIX=  @PYTHONFRAMEWORKPREFIX@
109 PYTHONFRAMEWORKINSTALLDIR= @PYTHONFRAMEWORKINSTALLDIR@
110 # Options to enable prebinding (for fast startup)
111 OTHER_LIBTOOL_OPT = -prebind -seg1addr 0x10000000
113 # Environment to run shared python without installed libraries
114 RUNSHARED=       @RUNSHARED@
116 # Modes for directories, executables and data files created by the
117 # install process.  Default to user-only-writable for all file types.
118 DIRMODE=        755
119 EXEMODE=        755
120 FILEMODE=       644
122 # configure script arguments
123 CONFIG_ARGS=    @CONFIG_ARGS@
126 # Subdirectories with code
127 SRCDIRS=        @SRCDIRS@
129 # Other subdirectories
130 SUBDIRSTOO=     Include Lib Misc Demo
132 # Files and directories to be distributed
133 CONFIGFILES=    configure configure.in acconfig.h pyconfig.h.in Makefile.pre.in
134 DISTFILES=      README ChangeLog $(CONFIGFILES)
135 DISTDIRS=       $(SUBDIRS) $(SUBDIRSTOO) Ext-dummy
136 DIST=           $(DISTFILES) $(DISTDIRS)
139 LIBRARY=        @LIBRARY@
140 LDLIBRARY=      @LDLIBRARY@
141 BLDLIBRARY=     @BLDLIBRARY@
142 DLLLIBRARY=     @DLLLIBRARY@
143 LDLIBRARYDIR=   @LDLIBRARYDIR@
144 INSTSONAME=     @INSTSONAME@
147 LIBS=           @LIBS@
148 LIBM=           @LIBM@
149 LIBC=           @LIBC@
150 SYSLIBS=        $(LIBM) $(LIBC)
151 SHLIBS=         @SHLIBS@
153 MAINOBJ=        @MAINOBJ@
154 THREADOBJ=      @THREADOBJ@
155 DLINCLDIR=      @DLINCLDIR@
156 DYNLOADFILE=    @DYNLOADFILE@
157 MACHDEP_OBJS=   @MACHDEP_OBJS@
158 UNICODE_OBJS=   @UNICODE_OBJS@
160 PYTHON=         python$(EXE)
161 BUILDPYTHON=    python$(BUILDEXE)
163 # === Definitions added by makesetup ===
166 ##########################################################################
167 # Modules
168 MODULE_OBJS=    \
169                 Modules/config.o \
170                 Modules/getpath.o \
171                 Modules/main.o \
172                 Modules/gcmodule.o
174 # Used of signalmodule.o is not available
175 SIGNAL_OBJS=    @SIGNAL_OBJS@
178 ##########################################################################
179 # Grammar
180 GRAMMAR_H=      $(srcdir)/Include/graminit.h
181 GRAMMAR_C=      $(srcdir)/Python/graminit.c
182 GRAMMAR_INPUT=  $(srcdir)/Grammar/Grammar
185 ##########################################################################
186 # Parser
187 PGEN=           Parser/pgen$(EXE)
189 POBJS=          \
190                 Parser/acceler.o \
191                 Parser/grammar1.o \
192                 Parser/listnode.o \
193                 Parser/node.o \
194                 Parser/parser.o \
195                 Parser/parsetok.o \
196                 Parser/bitset.o \
197                 Parser/metagrammar.o \
198                 Parser/firstsets.o \
199                 Parser/grammar.o \
200                 Parser/pgen.o
202 PARSER_OBJS=    $(POBJS) Parser/myreadline.o Parser/tokenizer.o
204 PGOBJS=         \
205                 Objects/obmalloc.o \
206                 Python/mysnprintf.o \
207                 Parser/tokenizer_pgen.o \
208                 Parser/printgrammar.o \
209                 Parser/pgenmain.o
211 PGENOBJS=       $(PGENMAIN) $(POBJS) $(PGOBJS)
214 ##########################################################################
215 # Python
216 PYTHON_OBJS=    \
217                 Python/bltinmodule.o \
218                 Python/exceptions.o \
219                 Python/ceval.o \
220                 Python/compile.o \
221                 Python/codecs.o \
222                 Python/errors.o \
223                 Python/frozen.o \
224                 Python/frozenmain.o \
225                 Python/future.o \
226                 Python/getargs.o \
227                 Python/getcompiler.o \
228                 Python/getcopyright.o \
229                 Python/getmtime.o \
230                 Python/getplatform.o \
231                 Python/getversion.o \
232                 Python/graminit.o \
233                 Python/import.o \
234                 Python/importdl.o \
235                 Python/marshal.o \
236                 Python/modsupport.o \
237                 Python/mystrtoul.o \
238                 Python/mysnprintf.o \
239                 Python/pyfpe.o \
240                 Python/pystate.o \
241                 Python/pythonrun.o \
242                 Python/structmember.o \
243                 Python/symtable.o \
244                 Python/sysmodule.o \
245                 Python/traceback.o \
246                 Python/getopt.o \
247                 Python/$(DYNLOADFILE) \
248                 $(MACHDEP_OBJS) \
249                 $(THREADOBJ)
252 ##########################################################################
253 # Objects
254 OBJECT_OBJS=    \
255                 Objects/abstract.o \
256                 Objects/boolobject.o \
257                 Objects/bufferobject.o \
258                 Objects/cellobject.o \
259                 Objects/classobject.o \
260                 Objects/cobject.o \
261                 Objects/complexobject.o \
262                 Objects/descrobject.o \
263                 Objects/enumobject.o \
264                 Objects/fileobject.o \
265                 Objects/floatobject.o \
266                 Objects/frameobject.o \
267                 Objects/funcobject.o \
268                 Objects/intobject.o \
269                 Objects/iterobject.o \
270                 Objects/listobject.o \
271                 Objects/longobject.o \
272                 Objects/dictobject.o \
273                 Objects/methodobject.o \
274                 Objects/moduleobject.o \
275                 Objects/object.o \
276                 Objects/obmalloc.o \
277                 Objects/rangeobject.o \
278                 Objects/sliceobject.o \
279                 Objects/stringobject.o \
280                 Objects/structseq.o \
281                 Objects/tupleobject.o \
282                 Objects/typeobject.o \
283                 Objects/weakrefobject.o \
284                 $(UNICODE_OBJS)
287 ##########################################################################
288 # objects that get linked into the Python library
289 LIBRARY_OBJS=   \
290                 Modules/getbuildinfo.o \
291                 $(PARSER_OBJS) \
292                 $(OBJECT_OBJS) \
293                 $(PYTHON_OBJS) \
294                 $(MODULE_OBJS) \
295                 $(SIGNAL_OBJS) \
296                 $(MODOBJS)
298 #########################################################################
299 # Rules
301 # Default target
302 all:            $(BUILDPYTHON) oldsharedmods sharedmods
304 # Build the interpreter
305 $(BUILDPYTHON): Modules/$(MAINOBJ) $(LIBRARY) $(LDLIBRARY)
306                 $(LINKCC) $(LDFLAGS) $(LINKFORSHARED) -o $@ \
307                         Modules/$(MAINOBJ) \
308                         $(BLDLIBRARY) $(LIBS) $(MODLIBS) $(SYSLIBS) $(LDLAST)
310 platform: $(BUILDPYTHON)
311         $(RUNSHARED) ./$(BUILDPYTHON) -E -c 'import sys ; from distutils.util import get_platform ; print get_platform()+"-"+sys.version[0:3]' >platform
314 # Build the shared modules
315 sharedmods: $(BUILDPYTHON)
316         case $$MAKEFLAGS in \
317         *-s*) $(RUNSHARED) CC='$(CC)' LDSHARED='$(BLDSHARED)' OPT='$(OPT)' ./$(BUILDPYTHON) -E $(srcdir)/setup.py -q build;; \
318         *) $(RUNSHARED) CC='$(CC)' LDSHARED='$(BLDSHARED)' OPT='$(OPT)' ./$(BUILDPYTHON) -E $(srcdir)/setup.py build;; \
319         esac
321 # buildno should really depend on something like LIBRARY_SRC
322 buildno: $(PARSER_OBJS) \
323                 $(OBJECT_OBJS) \
324                 $(PYTHON_OBJS) \
325                 $(MODULE_OBJS) \
326                 $(SIGNAL_OBJS) \
327                 $(MODOBJS) \
328                 $(srcdir)/Modules/getbuildinfo.c
329         if test -f buildno; then \
330                 expr `cat buildno` + 1 >buildno1; \
331                 mv -f buildno1 buildno; \
332         else echo 1 >buildno; fi
334 # Build static library
335 # avoid long command lines, same as LIBRARY_OBJS
336 $(LIBRARY): $(LIBRARY_OBJS)
337         -rm -f $@
338         $(AR) cr $@ Modules/getbuildinfo.o
339         $(AR) cr $@ $(PARSER_OBJS)
340         $(AR) cr $@ $(OBJECT_OBJS)
341         $(AR) cr $@ $(PYTHON_OBJS)
342         $(AR) cr $@ $(MODULE_OBJS) $(SIGNAL_OBJS)
343         $(AR) cr $@ $(MODOBJS)
344         $(RANLIB) $@
346 libpython$(VERSION).so: $(LIBRARY_OBJS)
347         if test $INSTSONAME != $LDLIBRARY; then \
348                 $(LDSHARED) -Wl,-soname=$(INSTSONAME) -o $(INSTSONAME) $(LIBRARY_OBJS) $(SHLIBS) $(LIBC) $(LIBM); \
349                 $(LN) -f $(INSTSONAME) $@; \
350         else\
351                 $(LDSHARED) -o $@ $(LIBRARY_OBJS) $(SHLIBS) $(LIBC) $(LIBM); \
352         fi
354 libpython$(VERSION).sl: $(LIBRARY_OBJS)
355         $(LDSHARED) -o $@ $(LIBRARY_OBJS) $(LIBC) $(LIBM)
357 # This rule is here for OPENSTEP/Rhapsody/MacOSX. It builds a temporary
358 # minimal framework (not including the Lib directory and such) in the current
359 # directory.
360 RESSRCDIR=$(srcdir)/Mac/OSXResources/framework
361 $(PYTHONFRAMEWORKDIR)/Versions/$(VERSION)/$(PYTHONFRAMEWORK): \
362                 $(LIBRARY) \
363                 $(RESSRCDIR)/Info.plist \
364                 $(RESSRCDIR)/version.plist \
365                 $(RESSRCDIR)/English.lproj/InfoPlist.strings
366         $(INSTALL) -d -m $(DIRMODE) $(PYTHONFRAMEWORKDIR)/Versions/$(VERSION)
367         libtool -o $(LDLIBRARY) -dynamic $(OTHER_LIBTOOL_OPT) $(LIBRARY) \
368                 -framework System @LIBTOOL_CRUFT@
369         $(INSTALL) -d -m $(DIRMODE)  \
370                 $(PYTHONFRAMEWORKDIR)/Versions/$(VERSION)/Resources/English.lproj
371         $(INSTALL_DATA) $(RESSRCDIR)/Info.plist \
372                 $(PYTHONFRAMEWORKDIR)/Versions/$(VERSION)/Resources/Info.plist
373         $(INSTALL_DATA) $(RESSRCDIR)/version.plist \
374                 $(PYTHONFRAMEWORKDIR)/Versions/$(VERSION)/Resources/version.plist
375         $(INSTALL_DATA) $(RESSRCDIR)/English.lproj/InfoPlist.strings \
376                 $(PYTHONFRAMEWORKDIR)/Versions/$(VERSION)/Resources/English.lproj/InfoPlist.strings
377         $(LN) -fsn $(VERSION) $(PYTHONFRAMEWORKDIR)/Versions/Current
378         $(LN) -fsn Versions/Current/Python $(PYTHONFRAMEWORKDIR)/Python
379         $(LN) -fsn Versions/Current/Headers $(PYTHONFRAMEWORKDIR)/Headers
380         $(LN) -fsn Versions/Current/Resources $(PYTHONFRAMEWORKDIR)/Resources
382 # This rule builds the Cygwin Python DLL
383 libpython$(VERSION).dll.a: $(LIBRARY_OBJS)
384         $(LDSHARED) -Wl,--out-implib=$@ -o $(DLLLIBRARY) $^ \
385                 $(LIBS) $(MODLIBS) $(SYSLIBS)
388 oldsharedmods: $(SHAREDMODS)
391 Makefile Modules/config.c: Makefile.pre \
392                                 $(srcdir)/Modules/config.c.in \
393                                 $(MAKESETUP) \
394                                 Modules/Setup.config \
395                                 Modules/Setup \
396                                 Modules/Setup.local
397         $(SHELL) $(MAKESETUP) -c $(srcdir)/Modules/config.c.in \
398                                 -s Modules \
399                                 Modules/Setup.config \
400                                 Modules/Setup.local \
401                                 Modules/Setup
402         @mv config.c Modules
403         @echo "The Makefile was updated, you may need to re-run make."
406 Modules/Setup: $(srcdir)/Modules/Setup.dist
407         @if test -f Modules/Setup; then \
408                 echo "-----------------------------------------------"; \
409                 echo "Modules/Setup.dist is newer than Modules/Setup;"; \
410                 echo "check to make sure you have all the updates you"; \
411                 echo "need in your Modules/Setup file."; \
412                 echo "Usually, copying Setup.dist to Setup will work."; \
413                 echo "-----------------------------------------------"; \
414         fi
416 ############################################################################
417 # Special rules for object files
419 Modules/getbuildinfo.o: $(srcdir)/Modules/getbuildinfo.c buildno
420         $(CC) -c $(PY_CFLAGS) -DBUILD=`cat buildno` -o $@ $(srcdir)/Modules/getbuildinfo.c
422 Modules/getpath.o: $(srcdir)/Modules/getpath.c Makefile
423         $(CC) -c $(PY_CFLAGS) -DPYTHONPATH='"$(PYTHONPATH)"' \
424                 -DPREFIX='"$(prefix)"' \
425                 -DEXEC_PREFIX='"$(exec_prefix)"' \
426                 -DVERSION='"$(VERSION)"' \
427                 -DVPATH='"$(VPATH)"' \
428                 -o $@ $(srcdir)/Modules/getpath.c
430 Modules/ccpython.o: $(srcdir)/Modules/ccpython.cc
431         $(CXX) -c $(PY_CFLAGS) -o $@ $(srcdir)/Modules/ccpython.cc
434 $(GRAMMAR_H) $(GRAMMAR_C): $(PGEN) $(GRAMMAR_INPUT)
435                 -$(PGEN) $(GRAMMAR_INPUT) $(GRAMMAR_H) $(GRAMMAR_C)
437 $(PGEN):        $(PGENOBJS)
438                 $(CC) $(OPT) $(PGENOBJS) $(LIBS) -o $(PGEN)
440 Parser/grammar.o:       $(srcdir)/Parser/grammar.c \
441                                 $(srcdir)/Include/token.h \
442                                 $(srcdir)/Include/grammar.h
443 Parser/metagrammar.o:   $(srcdir)/Parser/metagrammar.c
445 Parser/tokenizer_pgen.o:        $(srcdir)/Parser/tokenizer.c
448 Python/compile.o Python/symtable.o: $(GRAMMAR_H)
450 Python/getplatform.o: $(srcdir)/Python/getplatform.c
451                 $(CC) -c $(PY_CFLAGS) -DPLATFORM='"$(MACHDEP)"' -o $@ $(srcdir)/Python/getplatform.c
453 Python/importdl.o: $(srcdir)/Python/importdl.c
454                 $(CC) -c $(PY_CFLAGS) -I$(DLINCLDIR) -o $@ $(srcdir)/Python/importdl.c
456 Objects/unicodectype.o: $(srcdir)/Objects/unicodectype.c \
457                                 $(srcdir)/Objects/unicodetype_db.h
459 ############################################################################
460 # Header files
462 PYTHON_HEADERS= \
463                 Include/Python.h \
464                 Include/abstract.h \
465                 Include/boolobject.h \
466                 Include/bufferobject.h \
467                 Include/ceval.h \
468                 Include/classobject.h \
469                 Include/cobject.h \
470                 Include/codecs.h \
471                 Include/compile.h \
472                 Include/complexobject.h \
473                 Include/descrobject.h \
474                 Include/dictobject.h \
475                 Include/enumobject.h \
476                 Include/fileobject.h \
477                 Include/floatobject.h \
478                 Include/funcobject.h \
479                 Include/import.h \
480                 Include/intobject.h \
481                 Include/intrcheck.h \
482                 Include/iterobject.h \
483                 Include/listobject.h \
484                 Include/longobject.h \
485                 Include/methodobject.h \
486                 Include/modsupport.h \
487                 Include/moduleobject.h \
488                 Include/object.h \
489                 Include/objimpl.h \
490                 Include/patchlevel.h \
491                 Include/pydebug.h \
492                 Include/pyerrors.h \
493                 Include/pyfpe.h \
494                 Include/pymem.h \
495                 Include/pyport.h \
496                 Include/pystate.h \
497                 Include/pythonrun.h \
498                 Include/rangeobject.h \
499                 Include/sliceobject.h \
500                 Include/stringobject.h \
501                 Include/structseq.h \
502                 Include/structmember.h \
503                 Include/symtable.h \
504                 Include/sysmodule.h \
505                 Include/traceback.h \
506                 Include/tupleobject.h \
507                 Include/unicodeobject.h \
508                 Include/weakrefobject.h \
509                 pyconfig.h
511 $(LIBRARY_OBJS) $(MODOBJS) Modules/$(MAINOBJ): $(PYTHON_HEADERS)
514 ######################################################################
516 # Test the interpreter (twice, once without .pyc files, once with)
517 # In the past, we've had problems where bugs in the marshalling or
518 # elsewhere caused bytecode read from .pyc files to behave differently
519 # than bytecode generated directly from a .py source file.  Sometimes
520 # the bytecode read from a .pyc file had the bug, somtimes the directly
521 # generated bytecode.  This is sometimes a very shy bug needing a lot of
522 # sample data.
524 TESTOPTS=       -l
525 TESTPROG=       $(srcdir)/Lib/test/regrtest.py
526 TESTPYTHON=     $(RUNSHARED) ./$(BUILDPYTHON) -E -tt
527 test:           all platform
528                 -find $(srcdir)/Lib -name '*.py[co]' -print | xargs rm -f
529                 -$(TESTPYTHON) $(TESTPROG) $(TESTOPTS)
530                 $(TESTPYTHON) $(TESTPROG) $(TESTOPTS)
532 testall:        all platform
533                 -find $(srcdir)/Lib -name '*.py[co]' -print | xargs rm -f
534                 -$(TESTPYTHON) $(TESTPROG) $(TESTOPTS) -uall
535                 $(TESTPYTHON) $(TESTPROG) $(TESTOPTS) -uall
537 QUICKTESTOPTS=  $(TESTOPTS) -x test_thread test_signal test_strftime \
538                 test_unicodedata test_re test_sre test_select test_poll \
539                 test_linuxaudiodev test_struct test_sunaudiodev test_zlib
540 quicktest:      all platform
541                 -find $(srcdir)/Lib -name '*.py[co]' -print | xargs rm -f
542                 -$(TESTPYTHON) $(TESTPROG) $(QUICKTESTOPTS)
543                 $(TESTPYTHON) $(TESTPROG) $(QUICKTESTOPTS)
545 MEMTESTOPTS=    $(QUICKTESTOPTS) -x test_dl test___all__ test_fork1 \
546                 test_longexp
547 memtest:        all platform
548                 -rm -f $(srcdir)/Lib/test/*.py[co]
549                 -$(TESTPYTHON) $(TESTPROG) $(MEMTESTOPTS)
550                 $(TESTPYTHON) $(TESTPROG) $(MEMTESTOPTS)
552 # Install everything
553 install:        altinstall bininstall maninstall
555 # Install almost everything without disturbing previous versions
556 altinstall:     altbininstall libinstall inclinstall libainstall \
557                 sharedinstall oldsharedinstall
559 # Install shared libraries enabled by Setup
560 DESTDIRS=       $(exec_prefix) $(LIBDIR) $(BINLIBDEST) $(DESTSHARED)
562 oldsharedinstall: $(DESTSHARED) $(SHAREDMODS)
563                 @for i in X $(SHAREDMODS); do \
564                   if test $$i != X; then \
565                     echo $(INSTALL_SHARED) $$i $(DESTSHARED)/`basename $$i`; \
566                     $(INSTALL_SHARED) $$i $(DESTDIR)$(DESTSHARED)/`basename $$i`; \
567                   fi; \
568                 done
570 $(DESTSHARED):
571                 @for i in $(DESTDIRS); \
572                 do \
573                         if test ! -d $(DESTDIR)$$i; then \
574                                 echo "Creating directory $$i"; \
575                                 $(INSTALL) -d -m $(DIRMODE) $(DESTDIR)$$i; \
576                         else    true; \
577                         fi; \
578                 done
581 # Install the interpreter (by creating a hard link to python$(VERSION))
582 bininstall:     altbininstall
583         -if test -f $(DESTDIR)$(BINDIR)/$(PYTHON) -o -h $(DESTDIR)$(BINDIR)/$(PYTHON); \
584         then rm -f $(DESTDIR)$(BINDIR)/$(PYTHON); \
585         else true; \
586         fi
587         (cd $(DESTDIR)$(BINDIR); $(LN) python$(VERSION)$(EXE) $(PYTHON))
589 # Install the interpreter with $(VERSION) affixed
590 # This goes into $(exec_prefix)
591 altbininstall:  $(BUILDPYTHON)
592         @if test "$(PYTHONFRAMEWORKDIR)" != no-framework; then \
593                 if test ! -f $(DESTDIR)$(PYTHONFRAMEWORKINSTALLDIR)/Versions/Current/Resources/Info.plist; then \
594                         echo 'Framework build: use "make frameworkinstall" in stead of "make install"'; \
595                         exit 1; \
596                 fi; \
597         fi
598         @for i in $(BINDIR) $(LIBDIR); \
599         do \
600                 if test ! -d $(DESTDIR)$$i; then \
601                         echo "Creating directory $$i"; \
602                         $(INSTALL) -d -m $(DIRMODE) $(DESTDIR)$$i; \
603                 else    true; \
604                 fi; \
605         done
606         $(INSTALL_PROGRAM) $(BUILDPYTHON) $(DESTDIR)$(BINDIR)/python$(VERSION)$(EXE)
607         if test -f libpython$(VERSION)$(SO); then \
608                 if test "$(SO)" = .dll; then \
609                         $(INSTALL_SHARED) libpython$(VERSION)$(SO) $(DESTDIR)$(BINDIR); \
610                 else \
611                         $(INSTALL_SHARED) libpython$(VERSION)$(SO) $(DESTDIR)$(LIBDIR)/$(INSTSONAME); \
612                 fi; \
613         else    true; \
614         fi
616 # Install the manual page
617 maninstall:
618         @for i in $(MANDIR) $(MANDIR)/man1; \
619         do \
620                 if test ! -d $(DESTDIR)$$i; then \
621                         echo "Creating directory $$i"; \
622                         $(INSTALL) -d -m $(DIRMODE) $(DESTDIR)$$i; \
623                 else    true; \
624                 fi; \
625         done
626         $(INSTALL_DATA) $(srcdir)/Misc/python.man \
627                 $(DESTDIR)$(MANDIR)/man1/python.1
629 # Install the library
630 PLATDIR=        plat-$(MACHDEP)
631 EXTRAPLATDIR= @EXTRAPLATDIR@
632 EXTRAMACHDEPPATH=@EXTRAMACHDEPPATH@
633 MACHDEPS=       $(PLATDIR) $(EXTRAPLATDIR)
634 XMLLIBSUBDIRS=  xml xml/dom xml/parsers xml/sax
635 PLATMACDIRS= plat-mac plat-mac/Carbon plat-mac/lib-scriptpackages \
636         plat-mac/lib-scriptpackages/_builtinSuites \
637         plat-mac/lib-scriptpackages/CodeWarrior \
638         plat-mac/lib-scriptpackages/Explorer \
639         plat-mac/lib-scriptpackages/Finder \
640         plat-mac/lib-scriptpackages/Netscape \
641         plat-mac/lib-scriptpackages/StdSuites \
642         plat-mac/lib-scriptpackages/SystemEvents \
643         plat-mac/lib-scriptpackages/Terminal
644 PLATMACPATH=:plat-mac:plat-mac/lib-scriptpackages
645 LIBSUBDIRS=     lib-old lib-tk site-packages test test/output test/data \
646                 encodings email email/test email/test/data compiler hotshot \
647                 logging bsddb bsddb/test csv idlelib idlelib/Icons \
648                 distutils distutils/command $(XMLLIBSUBDIRS) curses $(MACHDEPS)
649 libinstall:     $(BUILDPYTHON) $(srcdir)/Lib/$(PLATDIR)
650         @for i in $(SCRIPTDIR) $(LIBDEST); \
651         do \
652                 if test ! -d $(DESTDIR)$$i; then \
653                         echo "Creating directory $$i"; \
654                         $(INSTALL) -d -m $(DIRMODE) $(DESTDIR)$$i; \
655                 else    true; \
656                 fi; \
657         done
658         @for d in $(LIBSUBDIRS); \
659         do \
660                 a=$(srcdir)/Lib/$$d; \
661                 if test ! -d $$a; then continue; else true; fi; \
662                 b=$(LIBDEST)/$$d; \
663                 if test ! -d $(DESTDIR)$$b; then \
664                         echo "Creating directory $$b"; \
665                         $(INSTALL) -d -m $(DIRMODE) $(DESTDIR)$$b; \
666                 else    true; \
667                 fi; \
668         done
669         @for i in $(srcdir)/Lib/*.py $(srcdir)/Lib/*.doc; \
670         do \
671                 if test -x $$i; then \
672                         $(INSTALL_SCRIPT) $$i $(DESTDIR)$(LIBDEST); \
673                         echo $(INSTALL_SCRIPT) $$i $(LIBDEST); \
674                 else \
675                         $(INSTALL_DATA) $$i $(DESTDIR)$(LIBDEST); \
676                         echo $(INSTALL_DATA) $$i $(LIBDEST); \
677                 fi; \
678         done
679         @for d in $(LIBSUBDIRS); \
680         do \
681                 a=$(srcdir)/Lib/$$d; \
682                 if test ! -d $$a; then continue; else true; fi; \
683                 b=$(LIBDEST)/$$d; \
684                 for i in $$a/*; \
685                 do \
686                         case $$i in \
687                         *CVS) ;; \
688                         *.py[co]) ;; \
689                         *.orig) ;; \
690                         *~) ;; \
691                         *) \
692                                 if test -d $$i; then continue; fi; \
693                                 if test -x $$i; then \
694                                     echo $(INSTALL_SCRIPT) $$i $$b; \
695                                     $(INSTALL_SCRIPT) $$i $(DESTDIR)$$b; \
696                                 else \
697                                     echo $(INSTALL_DATA) $$i $$b; \
698                                     $(INSTALL_DATA) $$i $(DESTDIR)$$b; \
699                                 fi;; \
700                         esac; \
701                 done; \
702         done
703         $(INSTALL_DATA) $(srcdir)/LICENSE $(DESTDIR)$(LIBDEST)/LICENSE.txt
704         PYTHONPATH=$(DESTDIR)$(LIBDEST)  $(RUNSHARED) \
705                 ./$(BUILDPYTHON) -Wi -tt $(DESTDIR)$(LIBDEST)/compileall.py \
706                 -x 'badsyntax|site-packages' $(DESTDIR)$(LIBDEST)
707         PYTHONPATH=$(DESTDIR)$(LIBDEST) $(RUNSHARED) \
708                 ./$(BUILDPYTHON) -Wi -tt -O $(DESTDIR)$(LIBDEST)/compileall.py \
709                 -x 'badsyntax|site-packages' $(DESTDIR)$(LIBDEST)
710         PYTHONPATH=$(DESTDIR)$(LIBDEST)  $(RUNSHARED) \
711                 ./$(BUILDPYTHON) -Wi -t $(DESTDIR)$(LIBDEST)/compileall.py \
712                 -x badsyntax $(DESTDIR)$(LIBDEST)/site-packages
713         PYTHONPATH=$(DESTDIR)$(LIBDEST) $(RUNSHARED) \
714                 ./$(BUILDPYTHON) -Wi -t -O $(DESTDIR)$(LIBDEST)/compileall.py \
715                 -x badsyntax $(DESTDIR)$(LIBDEST)/site-packages
717 # Create the PLATDIR source directory, if one wasn't distributed..
718 $(srcdir)/Lib/$(PLATDIR):
719         mkdir $(srcdir)/Lib/$(PLATDIR)
720         cp $(srcdir)/Lib/plat-generic/regen $(srcdir)/Lib/$(PLATDIR)/regen
721         export PATH; PATH="`pwd`:$$PATH"; \
722         export PYTHONPATH; PYTHONPATH="`pwd`/Lib"; \
723         export DYLD_FRAMEWORK_PATH; DYLD_FRAMEWORK_PATH="`pwd`"; \
724         export EXE; EXE="$(BUILDEXE)"; \
725         cd $(srcdir)/Lib/$(PLATDIR); ./regen
727 # Install the include files
728 INCLDIRSTOMAKE=$(INCLUDEDIR) $(CONFINCLUDEDIR) $(INCLUDEPY) $(CONFINCLUDEPY)
729 inclinstall:
730         @for i in $(INCLDIRSTOMAKE); \
731         do \
732                 if test ! -d $(DESTDIR)$$i; then \
733                         echo "Creating directory $$i"; \
734                         $(INSTALL) -d -m $(DIRMODE) $(DESTDIR)$$i; \
735                 else    true; \
736                 fi; \
737         done
738         @for i in $(srcdir)/Include/*.h; \
739         do \
740                 echo $(INSTALL_DATA) $$i $(INCLUDEPY); \
741                 $(INSTALL_DATA) $$i $(DESTDIR)$(INCLUDEPY); \
742         done
743         $(INSTALL_DATA) pyconfig.h $(DESTDIR)$(CONFINCLUDEPY)/pyconfig.h
745 # Install the library and miscellaneous stuff needed for extending/embedding
746 # This goes into $(exec_prefix)
747 LIBPL=          $(LIBP)/config
748 libainstall:    all
749         @for i in $(LIBDIR) $(LIBP) $(LIBPL); \
750         do \
751                 if test ! -d $(DESTDIR)$$i; then \
752                         echo "Creating directory $$i"; \
753                         $(INSTALL) -d -m $(DIRMODE) $(DESTDIR)$$i; \
754                 else    true; \
755                 fi; \
756         done
757         @if test -d $(LIBRARY); then :; else \
758                 if test "$(PYTHONFRAMEWORKDIR)" = no-framework; then \
759                         if test "$(SO)" = .dll; then \
760                                 $(INSTALL_DATA) $(LDLIBRARY) $(DESTDIR)$(LIBPL) ; \
761                         else \
762                                 $(INSTALL_DATA) $(LIBRARY) $(DESTDIR)$(LIBPL)/$(LIBRARY) ; \
763                                 $(RANLIB) $(DESTDIR)$(LIBPL)/$(LIBRARY) ; \
764                         fi; \
765                 else \
766                         echo Skip install of $(LIBRARY) - use make frameworkinstall; \
767                 fi; \
768         fi
769         $(INSTALL_DATA) Modules/config.c $(DESTDIR)$(LIBPL)/config.c
770         $(INSTALL_DATA) Modules/$(MAINOBJ) $(DESTDIR)$(LIBPL)/$(MAINOBJ)
771         $(INSTALL_DATA) $(srcdir)/Modules/config.c.in $(DESTDIR)$(LIBPL)/config.c.in
772         $(INSTALL_DATA) Makefile $(DESTDIR)$(LIBPL)/Makefile
773         $(INSTALL_DATA) Modules/Setup $(DESTDIR)$(LIBPL)/Setup
774         $(INSTALL_DATA) Modules/Setup.local $(DESTDIR)$(LIBPL)/Setup.local
775         $(INSTALL_DATA) Modules/Setup.config $(DESTDIR)$(LIBPL)/Setup.config
776         $(INSTALL_SCRIPT) $(srcdir)/Modules/makesetup $(DESTDIR)$(LIBPL)/makesetup
777         $(INSTALL_SCRIPT) $(srcdir)/install-sh $(DESTDIR)$(LIBPL)/install-sh
778         @if [ -s Modules/python.exp -a \
779                 "`echo $(MACHDEP) | sed 's/^\(...\).*/\1/'`" = "aix" ]; then \
780                 echo; echo "Installing support files for building shared extension modules on AIX:"; \
781                 $(INSTALL_DATA) Modules/python.exp              \
782                                 $(DESTDIR)$(LIBPL)/python.exp;          \
783                 echo; echo "$(LIBPL)/python.exp";               \
784                 $(INSTALL_SCRIPT) $(srcdir)/Modules/makexp_aix  \
785                                 $(DESTDIR)$(LIBPL)/makexp_aix;          \
786                 echo "$(LIBPL)/makexp_aix";                     \
787                 $(INSTALL_SCRIPT) $(srcdir)/Modules/ld_so_aix   \
788                                 $(DESTDIR)$(LIBPL)/ld_so_aix;           \
789                 echo "$(LIBPL)/ld_so_aix";                      \
790                 echo; echo "See Misc/AIX-NOTES for details.";   \
791         else true; \
792         fi
793         @case "$(MACHDEP)" in beos*) \
794                 echo; echo "Installing support files for building shared extension modules on BeOS:"; \
795                 $(INSTALL_DATA) Misc/BeOS-NOTES $(DESTDIR)$(LIBPL)/README;      \
796                 echo; echo "$(LIBPL)/README";                   \
797                 $(INSTALL_SCRIPT) Modules/ar_beos $(DESTDIR)$(LIBPL)/ar_beos; \
798                 echo "$(LIBPL)/ar_beos";                        \
799                 $(INSTALL_SCRIPT) Modules/ld_so_beos $(DESTDIR)$(LIBPL)/ld_so_beos; \
800                 echo "$(LIBPL)/ld_so_beos";                     \
801                 echo; echo "See Misc/BeOS-NOTES for details.";  \
802                 ;; \
803         esac
805 # Install the dynamically loadable modules
806 # This goes into $(exec_prefix)
807 sharedinstall:
808         $(RUNSHARED) ./$(BUILDPYTHON) -E $(srcdir)/setup.py install \
809                 --prefix=$(prefix) \
810                 --install-scripts=$(BINDIR) \
811                 --install-platlib=$(DESTSHARED) \
812                 --root=/$(DESTDIR)
814 # Here are a couple of targets for MacOSX again, to install a full
815 # framework-based Python. frameworkinstall installs everything, the
816 # subtargets install specific parts. Much of the actual work is offloaded to
817 # the Makefile in Mac/OSX
819 frameworkinstall: frameworkinstallframework \
820         frameworkinstallapps frameworkinstallunixtools
822 # On install, we re-make the framework
823 # structure in the install location, /Library/Frameworks/ or the argument to
824 # --enable-framework. If --enable-framework has been specified then we have
825 # automatically set prefix to the location deep down in the framework, so we
826 # only have to cater for the structural bits of the framework.
828 frameworkinstallframework: frameworkinstallstructure install frameworkinstallmaclib
830 frameworkinstallstructure:      $(LDLIBRARY)
831         @if test "$(PYTHONFRAMEWORKDIR)" = no-framework; then \
832                 echo Not configured with --enable-framework; \
833                 exit 1; \
834         else true; \
835         fi
836         @for i in $(prefix)/Resources/English.lproj $(prefix)/lib; do\
837                 if test ! -d $(DESTDIR)$$i; then \
838                         echo "Creating directory $(DESTDIR)$$i"; \
839                         $(INSTALL) -d -m $(DIRMODE) $(DESTDIR)$$i; \
840                 else    true; \
841                 fi; \
842         done
843         $(LN) -fsn include/python$(VERSION) $(DESTDIR)$(prefix)/Headers
844         $(INSTALL_DATA) $(RESSRCDIR)/Info.plist $(DESTDIR)$(prefix)/Resources/Info.plist
845         $(INSTALL_DATA) $(RESSRCDIR)/version.plist $(DESTDIR)$(prefix)/Resources/version.plist
846         $(INSTALL_DATA) $(RESSRCDIR)/English.lproj/InfoPlist.strings \
847                 $(DESTDIR)$(prefix)/Resources/English.lproj/InfoPlist.strings
848         $(LN) -fsn $(VERSION) $(DESTDIR)$(PYTHONFRAMEWORKINSTALLDIR)/Versions/Current
849         $(LN) -fsn Versions/Current/Python $(DESTDIR)$(PYTHONFRAMEWORKINSTALLDIR)/Python
850         $(LN) -fsn Versions/Current/Headers $(DESTDIR)$(PYTHONFRAMEWORKINSTALLDIR)/Headers
851         $(LN) -fsn Versions/Current/Resources $(DESTDIR)$(PYTHONFRAMEWORKINSTALLDIR)/Resources
852         $(INSTALL_DATA) $(LDLIBRARY) $(DESTDIR)$(PYTHONFRAMEWORKPREFIX)/$(LDLIBRARY)
854 # This installs Mac/Lib into the framework
855 frameworkinstallmaclib:
856         $(MAKE) -f $(srcdir)/Mac/OSX/Makefile installmacsubtree \
857                 BUILDPYTHON=./$(BUILDPYTHON) DIRMODE=$(DIRMODE) FILEMODE=$(FILEMODE) \
858                 srcdir=$(srcdir) builddir=. prefix=$(prefix) LIBDEST=$(LIBDEST) \
859                 DESTDIR=$(DESTDIR)
861 # This installs the IDE, the Launcher and other apps into /Applications
862 frameworkinstallapps:
863         $(MAKE) -f $(srcdir)/Mac/OSX/Makefile installapps \
864                 BUILDPYTHON=./$(BUILDPYTHON) DIRMODE=$(DIRMODE) FILEMODE=$(FILEMODE) \
865                 srcdir=$(srcdir) builddir=. DESTDIR=$(DESTDIR)
867 # This install the unix python and pythonw tools in /usr/local/bin
868 frameworkinstallunixtools:
869         $(MAKE) -f $(srcdir)/Mac/OSX/Makefile installunixtools \
870                 DIRMODE=$(DIRMODE) FILEMODE=$(FILEMODE) \
871                 srcdir=$(srcdir) builddir=. DESTDIR=$(DESTDIR)
873 # This installs a few of the useful scripts in Tools/scripts
874 scriptsinstall:
875         SRCDIR=$(srcdir) $(RUNSHARED) \
876         ./$(BUILDPYTHON) $(srcdir)/Tools/scripts/setup.py install \
877         --prefix=$(prefix) \
878         --install-scripts=$(BINDIR) \
879         --root=/$(DESTDIR)
881 # Build the toplevel Makefile
882 Makefile.pre: Makefile.pre.in config.status
883         CONFIG_FILES=Makefile.pre CONFIG_HEADERS= $(SHELL) config.status
884         $(MAKE) -f Makefile.pre Makefile
886 # Run the configure script.
887 config.status:  $(srcdir)/configure
888         $(SHELL) $(srcdir)/configure $(CONFIG_ARGS)
890 .PRECIOUS: config.status $(BUILDPYTHON) Makefile Makefile.pre
892 # Some make's put the object file in the current directory
893 .c.o:
894         $(CC) -c $(PY_CFLAGS) -o $@ $<
896 # Rerun configure with the same options as it was run last time,
897 # provided the config.status script exists
898 recheck:
899         $(SHELL) config.status --recheck
900         $(SHELL) config.status
902 # Rebuild the configure script from configure.in; also rebuild pyconfig.h.in
903 autoconf:
904         (cd $(srcdir); autoconf)
905         (cd $(srcdir); autoheader)
907 # Create a tags file for vi
908 tags::
909         cd $(srcdir); \
910         ctags -w -t Include/*.h; \
911         for i in $(SRCDIRS); do ctags -w -t -a $$i/*.[ch]; \
912         done; \
913         sort -o tags tags
915 # Create a tags file for GNU Emacs
916 TAGS::
917         cd $(srcdir); \
918         etags Include/*.h; \
919         for i in $(SRCDIRS); do etags -a $$i/*.[ch]; done
921 # Sanitation targets -- clean leaves libraries, executables and tags
922 # files, which clobber removes those as well
924 clean:
925         find . -name '*.o' -exec rm -f {} ';'
926         find . -name '*.s[ol]' -exec rm -f {} ';'
927         find $(srcdir) -name '*.py[co]' -exec rm -f {} ';'
929 clobber: clean
930         -rm -f $(BUILDPYTHON) $(PGEN) $(LIBRARY) $(LDLIBRARY) $(DLLLIBRARY) \
931                 tags TAGS \
932                 config.cache config.log pyconfig.h Modules/config.c
933         -rm -rf build platform
934         -rm -rf $(PYTHONFRAMEWORKDIR)
936 # Make things extra clean, before making a distribution:
937 # remove all generated files, even Makefile[.pre]
938 distclean: clobber
939         -rm -f core Makefile Makefile.pre buildno config.status \
940                 Modules/Setup Modules/Setup.local Modules/Setup.config
941         find $(srcdir) '(' -name '*.fdc' -o -name '*~' \
942                            -o -name '[@,#]*' -o -name '*.old' \
943                            -o -name '*.orig' -o -name '*.rej' \
944                            -o -name '*.bak' ')' \
945                            -exec rm -f {} ';'
947 # Check for smelly exported symbols (not starting with Py/_Py)
948 smelly: all
949         nm -p $(LIBRARY) | \
950                 sed -n "/ [TDB] /s/.* //p" | grep -v "^_*Py" | sort -u; \
952 # Find files with funny names
953 funny:
954         find $(DISTDIRS) -type d \
955                 -o -name '*.[chs]' \
956                 -o -name '*.py' \
957                 -o -name '*.doc' \
958                 -o -name '*.sty' \
959                 -o -name '*.bib' \
960                 -o -name '*.dat' \
961                 -o -name '*.el' \
962                 -o -name '*.fd' \
963                 -o -name '*.in' \
964                 -o -name '*.tex' \
965                 -o -name '*,[vpt]' \
966                 -o -name 'Setup' \
967                 -o -name 'Setup.*' \
968                 -o -name README \
969                 -o -name Makefile \
970                 -o -name ChangeLog \
971                 -o -name Repository \
972                 -o -name Root \
973                 -o -name Entries \
974                 -o -name Tag \
975                 -o -name tags \
976                 -o -name TAGS \
977                 -o -name .cvsignore \
978                 -o -name MANIFEST \
979                 -o -print
981 # Dependencies
983 Python/thread.o: @THREADHEADERS@
985 # Declare targets that aren't real files
986 .PHONY: all sharedmods oldsharedmods test quicktest memtest
987 .PHONY: install altinstall oldsharedinstall bininstall altbininstall
988 .PHONY: maninstall libinstall inclinstall libainstall sharedinstall
989 .PHONY: frameworkinstall frameworkinstallframework frameworkinstallstructure
990 .PHONY: frameworkinstallmaclib frameworkinstallapps frameworkinstallunixtools
991 .PHONY: recheck autoconf clean clobber distclean smelly funny
993 # IF YOU PUT ANYTHING HERE IT WILL GO AWAY