Author: dreimer Date: Fri Jun 8 17:21:22 2007 New Revision: 27071
URL: http://svn.reactos.org/svn/reactos?rev=27071&view=rev Log: - Move "title" command under @echo off. - Fix a disturbing "File not Found" in Clean.cmd, thx to Colin Finck for help
Modified: trunk/tools/RosBE-Windows/Root/Build-Multi.cmd trunk/tools/RosBE-Windows/Root/Build-Shared.cmd trunk/tools/RosBE-Windows/Root/Build.cmd trunk/tools/RosBE-Windows/Root/Clean.cmd trunk/tools/RosBE-Windows/Root/Help.cmd trunk/tools/RosBE-Windows/Root/RosBE.cmd
Modified: trunk/tools/RosBE-Windows/Root/Build-Multi.cmd URL: http://svn.reactos.org/svn/reactos/trunk/tools/RosBE-Windows/Root/Build-Mult... ============================================================================== --- trunk/tools/RosBE-Windows/Root/Build-Multi.cmd (original) +++ trunk/tools/RosBE-Windows/Root/Build-Multi.cmd Fri Jun 8 17:21:22 2007 @@ -1,10 +1,11 @@ -:: Copyright (c) Peter Ward. All rights reserved. -:: (Inspired by Dazzle from TinyKRNL) +:: Copyright (c) Peter Ward, Colin Finck and Daniel Reimer. All rights reserved. :: -:: Perform the build of ReactOS, but use the -j option -:: with the appropriate number for the number of CPUs -:: in the system. +:: Perform the build of ReactOS, but use the -j option +:: with the appropriate number for the number of CPUs +:: in the system. @echo off + +title Building...
:: :: Clear variables before use.
Modified: trunk/tools/RosBE-Windows/Root/Build-Shared.cmd URL: http://svn.reactos.org/svn/reactos/trunk/tools/RosBE-Windows/Root/Build-Shar... ============================================================================== --- trunk/tools/RosBE-Windows/Root/Build-Shared.cmd (original) +++ trunk/tools/RosBE-Windows/Root/Build-Shared.cmd Fri Jun 8 17:21:22 2007 @@ -1,4 +1,10 @@ +:: Copyright (c) Peter Ward, Colin Finck and Daniel Reimer. All rights reserved. +:: :: Shared actions for "Build.cmd" and "Build-Multi.cmd" +:: +@echo off + +title Building...
:: :: Check if config.template.rbuild is newer than config.rbuild,
Modified: trunk/tools/RosBE-Windows/Root/Build.cmd URL: http://svn.reactos.org/svn/reactos/trunk/tools/RosBE-Windows/Root/Build.cmd?... ============================================================================== --- trunk/tools/RosBE-Windows/Root/Build.cmd (original) +++ trunk/tools/RosBE-Windows/Root/Build.cmd Fri Jun 8 17:21:22 2007 @@ -1,8 +1,9 @@ -:: Copyright (c) Peter Ward. All rights reserved. -:: (Inspired by Dazzle from TinyKRNL) +:: Copyright (c) Peter Ward, Colin Finck and Daniel Reimer. All rights reserved. :: :: Perform the build of ReactOS. @echo off + +title Building...
:: :: Set the build command
Modified: trunk/tools/RosBE-Windows/Root/Clean.cmd URL: http://svn.reactos.org/svn/reactos/trunk/tools/RosBE-Windows/Root/Clean.cmd?... ============================================================================== --- trunk/tools/RosBE-Windows/Root/Clean.cmd (original) +++ trunk/tools/RosBE-Windows/Root/Clean.cmd Fri Jun 8 17:21:22 2007 @@ -2,19 +2,19 @@ :: :: Clean the ReactOS source directory. :: +@echo off + title Cleaning... - -@echo off
if "%1" == "" ( :: - :: Check if we have something to clean, if so, clean it. + : Check if we have something to clean, if so, clean it. :: if exist "%_ROSSOURCEDIR%\obj-i386." ( echo Cleaning ReactOS source directory...
:: - :: Run ReactOS's make clean. + : Run ReactOS's make clean. :: if exist "%_ROSSOURCEDIR%\makefile.auto" ( if not "%CD%" == "%_ROSSOURCEDIR%" ( @@ -27,7 +27,7 @@ )
:: - :: Remove directories/makefile.auto created by the build. + : Remove directories/makefile.auto created by the build. :: if exist "%_ROSSOURCEDIR%\obj-i386." ( rd /s /q "%_ROSSOURCEDIR%\obj-i386" 1> NUL 2> NUL @@ -43,7 +43,7 @@ )
:: - :: Now delete auto-generated/copied files not removed by make clean. + : Now delete auto-generated/copied files not removed by make clean. :: del /f "%_ROSSOURCEDIR%\media\inf\syssetup.inf" 1> NUL 2> NUL del /f "%_ROSSOURCEDIR%\include\roscfg.h" 1> NUL 2> NUL @@ -90,7 +90,7 @@ ) if "%1" == "logs" ( :: - :: Check if we have any logs to clean, if so, clean them. + : Check if we have any logs to clean, if so, clean them. :: if exist "%_ROSBELOGDIR%*.txt" ( echo Cleaning build logs...
Modified: trunk/tools/RosBE-Windows/Root/Help.cmd URL: http://svn.reactos.org/svn/reactos/trunk/tools/RosBE-Windows/Root/Help.cmd?r... ============================================================================== --- trunk/tools/RosBE-Windows/Root/Help.cmd (original) +++ trunk/tools/RosBE-Windows/Root/Help.cmd Fri Jun 8 17:21:22 2007 @@ -2,9 +2,9 @@ :: :: Display help for the commands included with the ReactOS Build Environment. :: +@echo off + title ReactOS Build Environment 0.3.6 - -@echo off
if "%1" == "" ( echo.
Modified: trunk/tools/RosBE-Windows/Root/RosBE.cmd URL: http://svn.reactos.org/svn/reactos/trunk/tools/RosBE-Windows/Root/RosBE.cmd?... ============================================================================== --- trunk/tools/RosBE-Windows/Root/RosBE.cmd (original) +++ trunk/tools/RosBE-Windows/Root/RosBE.cmd Fri Jun 8 17:21:22 2007 @@ -3,9 +3,9 @@ :: This script provides/sets up various build environments for :: ReactOS. Currently it provides GCC 4.1.3 build environments. :: +@echo off + title ReactOS Build Environment 0.3.6 - -@echo off
if "%1" == "" ( color 0A