s/mingwmake.bat
author Jan Vrany <jan.vrany@fit.cvut.cz>
Mon, 20 Apr 2015 12:53:16 +0100
changeset 268 ee1fd4a6e836
parent 203 05be338e59fe
child 279 af5ed3f190d4
permissions -rw-r--r--
Added support for skipping tests. To skip a test, simply add BenchmarkSkipRequest signal to setup or benchmark method. This may be used to skip benchmarks that are not runnable for whatever reason.

@REM -------
@REM make using mingw gnu compiler
@REM type mingwmake, 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%"

@pushd ..\..\..\stx\rules
@call find_mingw.bat
@popd
make.exe -N -f bc.mak %DEFINES% %USEMINGW_ARG% %*

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

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

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

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