Files
harbour-core/harbour/contrib/libct/make_vc.bat
2000-04-24 06:36:26 +00:00

31 lines
355 B
Batchfile

@echo off
rem
rem $Id$
rem
if "%1" == "clean" goto CLEAN
if "%1" == "CLEAN" goto CLEAN
: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
goto EXIT
:CLEAN
call %0 /A %2 %3 %4
goto EXIT
:EXIT