msvcmake.bat
331 Bytes
@echo off
rem First set up the helper batch files
cd batfiles
copy msvcobj.bat obj.bat
copy msvclib.bat lib.bat
copy msvcexe.bat exe.bat
rem Now do the generic build
if "%1"=="" goto all
goto %1
:all
call makeall
goto end
:lib
call makelib
goto end
:tests
call maketest
goto end
:examples
call makeex
goto end
:end
cd ..