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)
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
0
c86831d0f7e7 Initial version of CalipeL/S.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
     1
@REM -------
c86831d0f7e7 Initial version of CalipeL/S.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
     2
@REM make using Borland bcc32
c86831d0f7e7 Initial version of CalipeL/S.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
     3
@REM type bmake, and wait...
c86831d0f7e7 Initial version of CalipeL/S.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
     4
@REM do not edit - automatically generated from ProjectDefinition
c86831d0f7e7 Initial version of CalipeL/S.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
     5
@REM -------
c86831d0f7e7 Initial version of CalipeL/S.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
     6
@SET DEFINES=
c86831d0f7e7 Initial version of CalipeL/S.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
     7
@REM Kludge got Mercurial, cannot be implemented in Borland make
c86831d0f7e7 Initial version of CalipeL/S.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
     8
@FOR /F "tokens=*" %%i in ('hg root') do SET HGROOT=%%i
c86831d0f7e7 Initial version of CalipeL/S.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
     9
@IF "%HGROOT%" NEQ "" SET DEFINES=%DEFINES% "-DHGROOT=%HGROOT%"
279
af5ed3f190d4 Renamed BenchmarkResult to BenchmarkResultC
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 268
diff changeset
    10
0
c86831d0f7e7 Initial version of CalipeL/S.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    11
make.exe -N -f bc.mak  %DEFINES% %*
c86831d0f7e7 Initial version of CalipeL/S.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    12
1
1ab204c5442a BenchmarkInstance refactored, added initial version of text report.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 0
diff changeset
    13
@echo "***********************************"
279
af5ed3f190d4 Renamed BenchmarkResult to BenchmarkResultC
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 268
diff changeset
    14
@echo "Buildung jv/calipel/s/stx"
1
1ab204c5442a BenchmarkInstance refactored, added initial version of text report.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 0
diff changeset
    15
@echo "***********************************"
268
ee1fd4a6e836 Added support for skipping tests.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 203
diff changeset
    16
@pushd stx
ee1fd4a6e836 Added support for skipping tests.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 203
diff changeset
    17
@call bmake %1 %2 || exit /b "%errorlevel%"
ee1fd4a6e836 Added support for skipping tests.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 203
diff changeset
    18
@popd
0
c86831d0f7e7 Initial version of CalipeL/S.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    19
1
1ab204c5442a BenchmarkInstance refactored, added initial version of text report.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 0
diff changeset
    20
@echo "***********************************"
279
af5ed3f190d4 Renamed BenchmarkResult to BenchmarkResultC
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 268
diff changeset
    21
@echo "Buildung jv/calipel/s/tests"
203
05be338e59fe Support for in-image profiling using MessageTally.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 136
diff changeset
    22
@echo "***********************************"
268
ee1fd4a6e836 Added support for skipping tests.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 203
diff changeset
    23
@pushd tests
ee1fd4a6e836 Added support for skipping tests.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 203
diff changeset
    24
@call bmake %1 %2 || exit /b "%errorlevel%"
ee1fd4a6e836 Added support for skipping tests.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 203
diff changeset
    25
@popd
203
05be338e59fe Support for in-image profiling using MessageTally.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 136
diff changeset
    26
05be338e59fe Support for in-image profiling using MessageTally.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 136
diff changeset
    27
@echo "***********************************"
279
af5ed3f190d4 Renamed BenchmarkResult to BenchmarkResultC
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 268
diff changeset
    28
@echo "Buildung jv/calipel/s/benchmarks/micro"
1
1ab204c5442a BenchmarkInstance refactored, added initial version of text report.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 0
diff changeset
    29
@echo "***********************************"
268
ee1fd4a6e836 Added support for skipping tests.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 203
diff changeset
    30
@pushd benchmarks\micro
ee1fd4a6e836 Added support for skipping tests.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 203
diff changeset
    31
@call bmake %1 %2 || exit /b "%errorlevel%"
ee1fd4a6e836 Added support for skipping tests.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 203
diff changeset
    32
@popd
1
1ab204c5442a BenchmarkInstance refactored, added initial version of text report.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 0
diff changeset
    33
1ab204c5442a BenchmarkInstance refactored, added initial version of text report.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 0
diff changeset
    34
@echo "***********************************"
279
af5ed3f190d4 Renamed BenchmarkResult to BenchmarkResultC
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 268
diff changeset
    35
@echo "Buildung jv/calipel/s/benchmarks/game"
29
00d2eaa41853 Initial version of JSON report.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 9
diff changeset
    36
@echo "***********************************"
268
ee1fd4a6e836 Added support for skipping tests.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 203
diff changeset
    37
@pushd benchmarks\game
ee1fd4a6e836 Added support for skipping tests.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 203
diff changeset
    38
@call bmake %1 %2 || exit /b "%errorlevel%"
ee1fd4a6e836 Added support for skipping tests.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 203
diff changeset
    39
@popd
1
1ab204c5442a BenchmarkInstance refactored, added initial version of text report.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 0
diff changeset
    40
1ab204c5442a BenchmarkInstance refactored, added initial version of text report.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 0
diff changeset
    41