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

  1. # Build the native library support.
  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>, February 1996.
  10.  
  11. subdirs=    @libsubdirs@
  12.  
  13. all:
  14.         @for i in $(subdirs); do (cd $$i ; $(MAKE) all || exit 1) ; done
  15.  
  16. clean:
  17.         for i in $(subdirs); do (cd $$i ; $(MAKE) clean) ; done
  18.  
  19. distclean:
  20.         for i in $(subdirs); do (cd $$i ; $(MAKE) distclean) ; done
  21.         rm -f Makefile
  22.         rm -f config.log config.status
  23.         -rmdir native net support
  24.  
  25. install:
  26.         for i in $(subdirs); do (cd $$i ; $(MAKE) install || exit 1) ; done
  27.