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

  1. # Base level 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>, February 1996.
  10.  
  11. subdirs=    @subdirs@
  12.  
  13. all:
  14.     @for i in $(subdirs); do (cd $$i ; $(MAKE) || exit 1) ; done
  15.  
  16. test:    DUMMY
  17.     @(cd test ; $(MAKE) test)
  18.  
  19. clean:
  20.     @for i in $(subdirs); do (cd $$i ; $(MAKE) clean) ; done
  21.  
  22. distclean:
  23.     @for i in $(subdirs); do (cd $$i ; $(MAKE) distclean) ; done
  24.     rm -f ENVIRONMENT Makefile
  25.     rm -f config.cache config.log config.status
  26.     -rmdir @subdirs@
  27.  
  28. install:
  29.     @for i in $(subdirs); do (cd $$i ; $(MAKE) install || exit 1) ; done
  30.  
  31. DUMMY:
  32.