home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / pyth_os2.zip / python-1.0.2 / Makefile.in < prev    next >
Makefile  |  1994-05-04  |  8KB  |  257 lines

  1. ########################################################################
  2. # Copyright 1991, 1992, 1993, 1994 by Stichting Mathematisch Centrum,
  3. # Amsterdam, The Netherlands.
  4. #                         All Rights Reserved
  5. # Permission to use, copy, modify, and distribute this software and its 
  6. # documentation for any purpose and without fee is hereby granted, 
  7. # provided that the above copyright notice appear in all copies and that
  8. # both that copyright notice and this permission notice appear in 
  9. # supporting documentation, and that the names of Stichting Mathematisch
  10. # Centrum or CWI not be used in advertising or publicity pertaining to
  11. # distribution of the software without specific, written prior permission.
  12. # STICHTING MATHEMATISCH CENTRUM DISCLAIMS ALL WARRANTIES WITH REGARD TO
  13. # THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
  14. # FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH CENTRUM BE LIABLE
  15. # FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
  16. # WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
  17. # ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT
  18. # OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  19. ########################################################################
  20.  
  21. # Toplevel Makefile for Python
  22. # Note -- if recursive makes fail, try adding MAKE=make
  23.  
  24. # Substitutions by configure
  25. srcdir=        @srcdir@
  26. VPATH=        @srcdir@
  27. INSTALL=    @INSTALL@
  28.  
  29. # Install prefixes are treated specially by the configure script:
  30. # it only changes these lines if it has received a --prefix=... or
  31. # --exec-prefix-... command line option, or if it has figured out
  32. # a value by searching for python in $PATH.  Note that $(prefix) is
  33. # also used when compiling config.c in Modules to set the default
  34. # module search path, so if you change it later be sure to change it
  35. # there too and rebuild.
  36.  
  37. # Install prefix for architecture-independent files
  38. prefix=        /usr/local
  39.  
  40. # Install prefix for architecture-dependent files
  41. exec_prefix=    $(prefix)
  42.  
  43. # Programs
  44. SHELL=        /bin/sh
  45.  
  46. # --with-PACKAGE options for configure script
  47. # e.g. --with-readline --with-svr5 --with-solaris --with-thread
  48. # (see README for an explanation)
  49. WITH=        
  50.  
  51. # Compiler options passed to subordinate makes
  52. OPT=        -O
  53.  
  54. # Subdirectories where to run make recursively
  55. SUBDIRS=    Parser Objects Python Modules
  56.  
  57. # Other subdirectories
  58. SUBDIRSTOO=    Include Lib Doc Misc Demo readline Grammar
  59.  
  60. # Files and directories to be distributed
  61. CONFIGFILES=    configure configure.in acconfig.h config.h.in Makefile.in
  62. DISTFILES=    README ChangeLog $(CONFIGFILES)
  63. DISTDIRS=    $(SUBDIRS) $(SUBDIRSTOO) Ext-dummy
  64. DIST=        $(DISTFILES) $(DISTDIRS)
  65.  
  66. # Default target
  67. all:        python
  68.  
  69. # Build the interpreter
  70. python:        Makefiles
  71.         for i in $(SUBDIRS); do \
  72.             (echo $$i; cd $$i; $(MAKE) OPT="$(OPT)" all); \
  73.         done
  74.  
  75. # Test the interpreter (twice, once without .pyc files, once with)
  76. TESTPATH=    $(srcdir)/Lib:$(srcdir)/Lib/test
  77. test:        python
  78.         -rm -f $(srcdir)/Lib/test/*.pyc
  79.         PYTHONPATH=$(TESTPATH) ./python -c 'import autotest'
  80.         PYTHONPATH=$(TESTPATH) ./python -c 'import autotest'
  81.  
  82. # Install the interpreter
  83. install:    python
  84.         $(INSTALL) python $(exec_prefix)/bin/python
  85.         @echo If this is your first time, consider make libinstall...
  86.  
  87. # Install the library.
  88. # If your system does not support "cp -r", try "copy -r" or perhaps
  89. # something like find Lib -print | cpio -pacvdmu $(DESTDIR)/lib/python
  90. libinstall:
  91.         -if test ! -d $(prefix)/lib/python; \
  92.         then mkdir $(prefix)/lib/python; \
  93.         fi
  94.         cp -r $(srcdir)/Lib/* $(prefix)/lib/python
  95.         @echo Ideally, run something to compile all modules now...
  96.  
  97. # install the manual page
  98. maninstall:
  99.         $(INSTALL) $(srcdir)/Misc/python.man \
  100.             $(prefix)/man/man1/python.1
  101.  
  102. # install the include files
  103. INCLUDEPY=    $(prefix)/include/Py
  104. inclinstall:
  105.         -if test ! -d $(INCLUDEPY); \
  106.         then mkdir $(INCLUDEPY); \
  107.         fi
  108.         cp $(srcdir)/Include/*.h $(INCLUDEPY)
  109.  
  110. # install the lib*.a files and miscellaneous stuff needed by extensions
  111. LIBP=        $(exec_prefix)/lib/python
  112. LIBPL=        $(LIBP)/lib
  113. libainstall:    all
  114.         -if test ! -d $(LIBP); \
  115.         then mkdir $(LIBP); \
  116.         fi
  117.         -if test ! -d $(LIBPL); \
  118.         then mkdir $(LIBPL); \
  119.         fi
  120.         for i in $(SUBDIRS); do \
  121.             echo $$i; $(INSTALL) $$i/lib$$i.a $(LIBPL)/lib$$i.a; \
  122.         done
  123.         $(INSTALL) Modules/config.c $(LIBPL)/config.c
  124.         $(INSTALL) $(srcdir)/Modules/config.c.in $(LIBPL)/config.c.in
  125.         $(INSTALL) Modules/Makefile $(LIBPL)/Makefile
  126.         $(INSTALL) Modules/Setup $(LIBPL)/Setup
  127.         $(INSTALL) $(srcdir)/Modules/makesetup $(LIBPL)/makesetup
  128.         $(INSTALL) config.h $(LIBPL)/config.h
  129.         $(INSTALL) $(srcdir)/Python/frozenmain.c $(LIBPL)/frozenmain.c
  130.  
  131. # Build the sub-Makefiles
  132. Makefiles:    config.status
  133.         (cd Modules; $(MAKE) -f Makefile.pre Makefile)
  134.         for i in . $(SUBDIRS); do \
  135.             (echo $$i; cd $$i; $(MAKE) Makefile); \
  136.         done
  137.  
  138. # Build the toplevel Makefile
  139. Makefile:    Makefile.in
  140.         CONFIG_FILES=Makefile CONFIG_HEADERS= $(SHELL) config.status
  141.  
  142. # Run the configure script.  If config.status already exists,
  143. # call it with the --recheck argument, which reruns configure with the
  144. # same options as it was run last time; otherwise run the configure
  145. # script with options taken from the $(WITH) variable
  146. config.status:    $(srcdir)/configure
  147.         if test -f config.status; \
  148.         then $(SHELL) config.status --recheck; \
  149.         else $(SHELL) $(srcdir)/configure $(WITH); \
  150.         fi
  151.  
  152. .PRECIOUS:    config.status python
  153.  
  154. # Rerun configure with the same options as it was run last time,
  155. # provided the config.status script exists
  156. recheck:
  157.         $(SHELL) config.status --recheck
  158.  
  159. # Rebuild the configure script from configure.in; also rebuild config.h.in
  160. autoconf:
  161.         (cd $(srcdir); autoconf; autoheader)
  162.  
  163. # Create a tags file for vi
  164. tags::
  165.         ctags -w -t Include/*.h
  166.         for i in $(SUBDIRS); do ctags -w -t -a $$i/*.[ch]; done
  167.         sort tags -o tags
  168.  
  169. # Create a tags file for GNU Emacs
  170. TAGS::
  171.         etags -t Include/*.h
  172.         for i in $(SUBDIRS); do etags -t -a $$i/*.[ch]; done
  173.  
  174. # Add dependencies to sub-Makefiles
  175. depend:
  176.         for i in $(SUBDIRS); do \
  177.             (echo $$i; cd $$i; $(MAKE) depend); \
  178.         done
  179.  
  180. # Sanitation targets -- clean leaves libraries, executables and tags
  181. # files, which clobber removes those as well
  182.  
  183. localclean:
  184.         -rm -f core *~ [@,#]* *.old *.orig *.rej
  185.  
  186. clean:        localclean
  187.         -for i in $(SUBDIRS); do \
  188.             (echo $$i; cd $$i; \
  189.              if test -f Makefile; \
  190.              then $(MAKE) clean; \
  191.              else $(MAKE) -f Makefile.*in clean; \
  192.              fi); \
  193.         done
  194.  
  195. localclobber:    localclean
  196.         -rm -f tags TAGS python
  197.  
  198. clobber:    localclobber
  199.         -for i in $(SUBDIRS); do \
  200.             (echo $$i; cd $$i; \
  201.              if test -f Makefile; \
  202.              then $(MAKE) clobber; \
  203.              else $(MAKE) -f Makefile.in clobber; \
  204.              fi); \
  205.         done
  206.  
  207. # Make things extra clean, before making a distribution
  208. distclean:    clobber
  209.         -$(MAKE) SUBDIRS="$(SUBDIRSTOO)" clobber
  210.         -rm -f config.status config.h Makefile
  211.         -for i in $(SUBDIRS) $(SUBDIRSTOO); do \
  212.              for f in $$i/*.in; do \
  213.                 f=`basename "$$f" .in`; \
  214.                  if test "$$f" != "*"; then \
  215.                     echo rm -f "$$i/$$f"; \
  216.                      rm -f "$$i/$$f"; \
  217.                 fi; \
  218.              done; \
  219.         done
  220.  
  221. # Find files with funny names
  222. find:
  223.         find $(DISTDIRS) -type d \
  224.             -o -name '*.[chs]' \
  225.             -o -name '*.py' \
  226.             -o -name '*.doc' \
  227.             -o -name '*.sty' \
  228.             -o -name '*.bib' \
  229.             -o -name '*.dat' \
  230.             -o -name '*.el' \
  231.             -o -name '*.fd' \
  232.             -o -name '*.in' \
  233.             -o -name '*.tex' \
  234.             -o -name '*,[vpt]' \
  235.             -o -name 'Setup' \
  236.             -o -name 'Setup.*' \
  237.             -o -name README \
  238.             -o -name Makefile \
  239.             -o -name ChangeLog \
  240.             -o -name RCS \
  241.             -o -name Repository \
  242.             -o -name Entries \
  243.             -o -name Tag \
  244.             -o -name tags \
  245.             -o -name TAGS \
  246.             -o -name .cvsignore \
  247.             -o -name MANIFEST \
  248.             -o -print
  249.  
  250. # Build a distribution tar file (run make distclean first)
  251. # (This leaves the RCS and CVS directories in :-( )
  252. tar:
  253.         tar cf - $(DIST) | compress >dist.tar.Z
  254.