home *** CD-ROM | disk | FTP | other *** search
- @echo off
-
- rem Batch File to Build db_VISTA Utilities
-
- rem Arguments
- rem %1 - Compiler
-
- if "%1" == "" goto args
-
- copy tims.%1+tims.gen tims.mak
-
- if "%1" == "MS6" goto ms6
- if "%1" == "MS5" goto ms5
- goto exit
- :ms6
- nmake -f tims.mak
- goto exit
-
- :ms5
- make tims.mak
- goto exit
-
- :args
- echo * Usage: MKTIMS compiler
- echo *
- echo * Example: MKTIMS MS6
- echo * ---------------------------------------------------------------------------
- echo * Compilers: MS6 Microsoft C 6.0
- echo * MS5 Microsoft C 5.1
- echo * QC25 Microsoft QuickC 2.5
- echo * ---------------------------------------------------------------------------
-
- :exit