Files
harbour-core/harbour/contrib/runjava/make_vc.bat
2000-03-26 23:34:42 +00:00

31 lines
380 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 ..\..\bin\vc\*.dll ..\..\bin\*.* > nul
copy ..\..\obj\vc\*.class ..\..\bin\*.* > nul
goto EXIT
:BUILD_ERR
notepad make_vc.log
goto EXIT
:CLEAN
goto EXIT
:EXIT