s/bmake.bat
author Jan Vrany <jan.vrany@fit.cvut.cz>
Fri, 18 Sep 2015 09:21:21 +0100
changeset 279 af5ed3f190d4
parent 268 ee1fd4a6e836
permissions -rw-r--r--
Renamed BenchmarkResult to BenchmarkResultC The new name is a bit stupid, but this is required to avoid name clash with Pharo 5 which itself defines BenchmarkResult class (which is in the base system, i.e., it's not a class defined by some external package)

@REM -------
@REM make using Borland bcc32
@REM type bmake, and wait...
@REM do not edit - automatically generated from ProjectDefinition
@REM -------
@SET DEFINES=
@REM Kludge got Mercurial, cannot be implemented in Borland make
@FOR /F "tokens=*" %%i in ('hg root') do SET HGROOT=%%i
@IF "%HGROOT%" NEQ "" SET DEFINES=%DEFINES% "-DHGROOT=%HGROOT%"

make.exe -N -f bc.mak  %DEFINES% %*

@echo "***********************************"
@echo "Buildung jv/calipel/s/stx"
@echo "***********************************"
@pushd stx
@call bmake %1 %2 || exit /b "%errorlevel%"
@popd

@echo "***********************************"
@echo "Buildung jv/calipel/s/tests"
@echo "***********************************"
@pushd tests
@call bmake %1 %2 || exit /b "%errorlevel%"
@popd

@echo "***********************************"
@echo "Buildung jv/calipel/s/benchmarks/micro"
@echo "***********************************"
@pushd benchmarks\micro
@call bmake %1 %2 || exit /b "%errorlevel%"
@popd

@echo "***********************************"
@echo "Buildung jv/calipel/s/benchmarks/game"
@echo "***********************************"
@pushd benchmarks\game
@call bmake %1 %2 || exit /b "%errorlevel%"
@popd