mingwmake.bat
author Jan Vrany <jan.vrany@fit.cvut.cz>
Thu, 18 Apr 2013 23:32:13 +0200
branchdevelopment
changeset 2526 ef415ed11871
parent 2515 bcfe9f4dca6b
child 2529 764ab6925cf5
permissions -rw-r--r--
Added JavaUnresolvedCompilationError. This one is raised whenever Java code reaches unresolved code / code with errors. This is dove by translating exception thrown by ECJ-synthetized error code into smalltalk exception. This has two advantages: 1) allow for easier handling of this un user code 2) it is not handled by thread error handler so when raised, it does not cause silen thread death.

@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 ..\rules
@call find_mingw.bat
@popd
make.exe -N -f bc.mak %DEFINES% %USEMINGW_ARG% %*

@echo "***********************************"
@echo "Buildung stx/libjava/tools
@echo "***********************************"
@cd tools
@call mingwmake %1 %2
@cd ..

@echo "***********************************"
@echo "Buildung stx/libjava/experiments
@echo "***********************************"
@cd experiments
@call mingwmake %1 %2
@cd ..

@echo "***********************************"
@echo "Buildung stx/libjava/examples
@echo "***********************************"
@cd examples
@call mingwmake %1 %2
@cd ..