home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 1 / ADE-1.bin / ade-dist / kaffe-0.5p4-src.tgz / tar.out / contrib / kaffe / win32 / Makefile < prev   
Makefile  |  1996-09-28  |  1KB  |  64 lines

  1. # Makefile.in for Kaffe
  2. #
  3. # Copyright (c) 1996 Systems Architecture Research Centre,
  4. #           City University, London, UK.
  5. #
  6. # See the file "license.terms" for information on usage and redistribution
  7. # of this file, and for a DISCLAIMER OF ALL WARRANTIES.
  8. #
  9. # Written by Tim Wilkinson <tim@sarc.city.ac.uk>, June 1996.
  10.  
  11. all:
  12.         cd kaffevm
  13.         make
  14.         cd ..\kaffe
  15.         make
  16.         cd ..\lib
  17.         make
  18.         cd ..\scripts
  19.         make
  20.         cd ..\sun
  21.         make
  22.  
  23. clean:
  24.         cd kaffevm
  25.         make clean
  26.         cd ..\kaffe
  27.         make clean
  28.         cd ..\lib
  29.         make clean
  30.         cd ..\scripts
  31.         make clean
  32.         cd ..\sun
  33.         make clean
  34.  
  35. distclean:
  36.         cd kaffevm
  37.         make distclean
  38.         cd ..\kaffe
  39.         make distclean
  40.         cd ..\lib
  41.         make distclean
  42.         cd ..\scripts
  43.         make distclean
  44.         cd ..\sun
  45.         make distclean
  46.  
  47. install:
  48.         mkdir c:\kaffe
  49.         mkdir c:\kaffe\bin
  50.         mkdir c:\kaffe\lib
  51.         mkdir c:\kaffe\share
  52.         mkdir c:\kaffe\share\kaffe
  53.         mkdir c:\kaffe\share\kaffe\lib
  54.         cd kaffevm
  55.         make install
  56.         cd ..\kaffe
  57.         make install
  58.         cd ..\lib
  59.         make install
  60.         cd ..\scripts
  61.         make install
  62.         cd ..\sun
  63.         make install
  64.