home *** CD-ROM | disk | FTP | other *** search
- @echo off
- if _%1==_ goto default
- :again
- goto %1
- goto exit
-
- :default
- make.exe -fmakefile.gcc
- if errorlevel 1 goto exit
- goto end
-
- :turboc
- make.exe -fmakefile.tcc
- if errorlevel 1 goto exit
- goto end
-
- :all
- call make default
- if errorlevel 1 goto exit
- call make turboc
- if errorlevel 1 goto exit
- goto end
-
-
- :end
- shift
- if not _%1==_ goto again
- :exit
-