home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / msdn_vcb / samples / vc98 / sdk / com / inole2 / mksamp1.bat < prev    next >
DOS Batch File  |  1995-05-04  |  411b  |  30 lines

  1. @echo off
  2. cd %1
  3.  
  4. if "%SDI%" == "1" goto SDI
  5.  
  6. set SDI=
  7. echo Building MDI %2 > err
  8. goto Exit
  9.  
  10. :SDI
  11.  
  12. SET SDI=1
  13. echo Building SDI %2 > err
  14.  
  15. SET SDI=
  16.  
  17. :Exit
  18.  
  19. nmake /NOLOGO clean
  20. nmake /I /NOLOGO >> err
  21.  
  22. if exist %3 copy %3 ..\..\build
  23. type err >> ..\..\build\err
  24.  
  25. echo. >> ..\..\build\err
  26. echo ****************************************** >> ..\..\build\err
  27. echo. >> ..\..\build\err
  28.  
  29. cd..
  30.