home *** CD-ROM | disk | FTP | other *** search
/ io Programmo 40 / IOPROG_40.ISO / SOFT / NETFrameworkSDK.exe / comsdk.cab / samples.exe / assemblies / RothIRA / makefile < prev    next >
Encoding:
Makefile  |  2000-06-23  |  331 b   |  29 lines

  1.  
  2. all: RothStatics RothCalcr RothAnalyzer 
  3.  
  4. RothStatics::
  5.     cd $*
  6.     nmake all
  7.     cd ..
  8.  
  9. RothCalcr::
  10.     cd $*
  11.     nmake all
  12.     cd ..
  13.  
  14. RothAnalyzer::
  15.     cd $*
  16.     nmake all
  17.     cd ..
  18.  
  19. clean:
  20.     cd RothStatics
  21.     nmake clean
  22.     cd ..
  23.     cd RothCalcr
  24.     nmake clean
  25.     cd ..
  26.     cd RothAnalyzer
  27.     nmake clean
  28.     cd ..
  29.