home *** CD-ROM | disk | FTP | other *** search
/ io Programmo 10 / ioProg_10.iso / soft / sdk20 / dxma05.cab / samples / dxm / Samples / da / Java / Apps / makefile
Encoding:
Makefile  |  1997-08-12  |  275 b   |  20 lines

  1. !CMDSWITCHES +S
  2.  
  3. DIRS = Chess
  4.  
  5. MAKE = nmake
  6.  
  7. default: fresh
  8.  
  9. all: fresh
  10.  
  11. fresh:
  12.     for %i in ($(DIRS)) do nmake recursive DIR=%%i HOW=fresh
  13.  
  14. clean:
  15.     for %i in ($(DIRS)) do nmake recursive DIR=%%i HOW=clean
  16.  
  17. recursive:
  18.     cd $(DIR)
  19.         $(MAKE) $(HOW)
  20.     cd ..