home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c150 / 5.ddi / MKTIMS.BAT < prev    next >
Encoding:
DOS Batch File  |  1990-12-12  |  664 b   |  34 lines

  1. @echo off
  2.  
  3. rem  Batch File to Build db_VISTA Utilities
  4.  
  5. rem  Arguments
  6. rem    %1 - Compiler
  7.  
  8. if "%1" == "" goto args
  9.  
  10. copy tims.%1+tims.gen tims.mak
  11.  
  12. if "%1" == "MS6" goto ms6
  13. if "%1" == "MS5" goto ms5
  14. goto exit
  15. :ms6
  16. nmake -f tims.mak
  17. goto exit
  18.  
  19. :ms5
  20. make tims.mak
  21. goto exit
  22.  
  23. :args
  24. echo * Usage:    MKTIMS compiler
  25. echo *
  26. echo * Example: MKTIMS MS6
  27. echo * ---------------------------------------------------------------------------
  28. echo * Compilers:      MS6  Microsoft C 6.0
  29. echo *          MS5  Microsoft C 5.1
  30. echo *          QC25 Microsoft QuickC 2.5
  31. echo * ---------------------------------------------------------------------------
  32.  
  33. :exit
  34.