vcmake.bat
author Claus Gittinger <cg@exept.de>
Thu, 09 Aug 2018 15:51:04 +0200
branchcvs_MAIN
changeset 855 2a1f45756924
parent 844 a3d9f2dd3648
permissions -rw-r--r--
#OTHER by cg info xlations

@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 common goto skip_stx_libscm_common
@echo "***********************************"
@echo "Building stx/libscm/common"
@echo "***********************************"
@pushd common
@call vcmake %1 %2 || exit /b "%errorlevel%"
@popd
@goto done_stx_libscm_common
:skip_stx_libscm_common
@echo "###################################"
@echo "FOLDER MISSING: stx/libscm/common"
@echo "###################################"
exit /b 1
:done_stx_libscm_common

@if not exist mercurial goto skip_stx_libscm_mercurial
@echo "***********************************"
@echo "Building stx/libscm/mercurial"
@echo "***********************************"
@pushd mercurial
@call vcmake %1 %2 || exit /b "%errorlevel%"
@popd
@goto done_stx_libscm_mercurial
:skip_stx_libscm_mercurial
@echo "###################################"
@echo "FOLDER MISSING: stx/libscm/mercurial"
@echo "###################################"
exit /b 1
:done_stx_libscm_mercurial

@if not exist github goto skip_stx_libscm_github
@echo "***********************************"
@echo "Building stx/libscm/github"
@echo "***********************************"
@pushd github
@call vcmake %1 %2 || exit /b "%errorlevel%"
@popd
@goto done_stx_libscm_github
:skip_stx_libscm_github
@echo "###################################"
@echo "FOLDER MISSING: stx/libscm/github"
@echo "###################################"
exit /b 1
:done_stx_libscm_github