home *** CD-ROM | disk | FTP | other *** search
/ PC Pro 2005 June (DVD) / DPPRO0605DVD.iso / dotNETSDK / SETUP.EXE / netfxsd1.cab / FL_MakInDir_bat________.3643236F_FC70_11D3_A536_0090278A1BB8 < prev    next >
Encoding:
Text File  |  2001-04-20  |  466 b   |  28 lines

  1. @echo off
  2.  
  3. if "%2" == "" echo.
  4. if "%2" == "" echo USAGE: MakInDir [Directory] [Target]
  5. if "%2" == "" echo ------ Directory: directory to run NMAKE within
  6. if "%2" == "" echo ------ Target: the target of the NMAKE session
  7. if "%2" == "" goto done
  8.  
  9. cd %1
  10. echo on
  11. nmake /nologo %2
  12. @echo off
  13. if errorlevel 0 goto finish else goto bomb
  14.  
  15. :bomb
  16. if "%OS%" == "" goto Win9xbomb else goto NTbomb
  17.  
  18. :Win9xbomb
  19. exit
  20.  
  21. :NTbomb
  22. exit 1
  23.  
  24. :finish
  25. cd ..
  26.  
  27. :done
  28.