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