vcmake.bat
author Claus Gittinger <cg@exept.de>
Sun, 23 Feb 2020 14:03:15 +0100
branchcvs_MAIN
changeset 3997 5bb44f7e1d20
parent 3889 9a5769667e89
permissions -rw-r--r--
#REFACTORING by exept class: Java class changed: #dumpConfigOn:

@REM -------
@REM make using Microsoft Visual C compiler
@REM type vcmake, and wait...
@REM do not edit - automatically generated from ProjectDefinition
@REM -------

@if not defined VSINSTALLDIR (
    pushd ..\rules
    call vcsetup.bat
    popd
)
@SET DEFINES=

make.exe -N -f bc.mak -DUSEVC=1 %DEFINES% %*



@if not exist experiments goto skip_stx_libjava_experiments
@echo "***********************************"
@echo "Building stx/libjava/experiments"
@echo "***********************************"
@pushd experiments
@call vcmake %1 %2 || exit /b "%errorlevel%"
@popd
@goto done_stx_libjava_experiments
:skip_stx_libjava_experiments
@echo "###################################"
@echo "FOLDER MISSING: stx/libjava/experiments"
@echo "###################################"
@REM exit /b 1
:done_stx_libjava_experiments

@if not exist tools goto skip_stx_libjava_tools
@echo "***********************************"
@echo "Building stx/libjava/tools"
@echo "***********************************"
@pushd tools
@call vcmake %1 %2 || exit /b "%errorlevel%"
@popd
@goto done_stx_libjava_tools
:skip_stx_libjava_tools
@echo "###################################"
@echo "FOLDER MISSING: stx/libjava/tools"
@echo "###################################"
exit /b 1
:done_stx_libjava_tools