Due to Colin's demand, byebye mingw32-make. Now its called M.A.K.E. (Massively awesome Kode (!!!) enhancement) :-P

svn path=/trunk/tools/RosBE/; revision=1138
This commit is contained in:
Daniel Reimer 2009-12-02 08:37:31 +00:00
parent bd2d3c883c
commit 397bd932aa
4 changed files with 6 additions and 6 deletions

View File

@ -60,9 +60,9 @@ if ($_ROSBE_WRITELOG -eq 1) {
New-Item -path "$_ROSBE_LOGDIR" -type directory
}
$file = "$_ROSBE_LOGDIR\BuildLog-$_ROSBE_TARGET_GCCVERSION-$DATENAME-$TIMENAME.txt"
&{IEX "&'mingw32-make' -j $MAKE_JOBS $($args)"} $($args) 2>&1 | tee-object $file
&{IEX "&'make' -j $MAKE_JOBS $($args)"} $($args) 2>&1 | tee-object $file
} else {
&{IEX "&'mingw32-make' -j $MAKE_JOBS $($args)"} $($args)
&{IEX "&'make' -j $MAKE_JOBS $($args)"} $($args)
}
if ($_ROSBE_SHOWTIME -eq 1) {
$sw.Stop()

View File

@ -30,4 +30,4 @@ if (Test-Path "$_ROSBE_HOST_MINGWPATH\bin\nasm.exe") {
& bison '--version' | select-string "GNU Bison"
$fver = (& flex '--version') -replace ".*version ((\d|\.)+).*",'$1'
"flex $fver"
& mingw32-make -v | & find "GNU Make"
& make -v | & find "GNU Make"

View File

@ -55,9 +55,9 @@ if %_ROSBE_WRITELOG% == 1 (
if not exist "%_ROSBE_LOGDIR%\." (
mkdir "%_ROSBE_LOGDIR%" 1> NUL 2> NUL
)
%BUILDTIME_COMMAND% "mingw32-make" -j %MAKE_JOBS% %* 2>&1 | "%_ROSBE_BASEDIR%\Tools\tee.exe" "%_ROSBE_LOGDIR%\BuildLog-%_ROSBE_TARGET_GCCVERSION%-%datename%-%timename%.txt"
%BUILDTIME_COMMAND% "make" -j %MAKE_JOBS% %* 2>&1 | "%_ROSBE_BASEDIR%\Tools\tee.exe" "%_ROSBE_LOGDIR%\BuildLog-%_ROSBE_TARGET_GCCVERSION%-%datename%-%timename%.txt"
) else (
%BUILDTIME_COMMAND% "mingw32-make" -j %MAKE_JOBS% %*
%BUILDTIME_COMMAND% "make" -j %MAKE_JOBS% %*
)
:EOC

View File

@ -32,4 +32,4 @@ if exist "%_ROSBE_HOST_MINGWPATH%\bin\nasm.exe" (
:: Bison, Flex and Make
bison --version | find "GNU Bison"
flex --version
mingw32-make -v | find "GNU Make"
make -v | find "GNU Make"