22 lines
236 B
Batchfile
22 lines
236 B
Batchfile
@echo off
|
|
rem
|
|
rem $Id$
|
|
rem
|
|
|
|
:BUILD
|
|
|
|
nmake /f makefile.vc %1 %2 %3 > make_vc.log
|
|
if errorlevel 1 goto BUILD_ERR
|
|
|
|
:BUILD_OK
|
|
|
|
copy ..\..\lib\vc\ct3.lib ..\..\lib\*.* >nul
|
|
goto EXIT
|
|
|
|
:BUILD_ERR
|
|
|
|
notepad make_vc.log
|
|
|
|
:EXIT
|
|
|