Author: dreimer Date: Wed Sep 3 00:19:42 2008 New Revision: 35894
URL: http://svn.reactos.org/svn/reactos?rev=35894&view=rev Log: Add arch specific makefile to clean process
Modified: trunk/tools/RosBE/RosBE-Windows/Root/Clean.cmd
Modified: trunk/tools/RosBE/RosBE-Windows/Root/Clean.cmd URL: http://svn.reactos.org/svn/reactos/trunk/tools/RosBE/RosBE-Windows/Root/Clea... ============================================================================== --- trunk/tools/RosBE/RosBE-Windows/Root/Clean.cmd [iso-8859-1] (original) +++ trunk/tools/RosBE/RosBE-Windows/Root/Clean.cmd [iso-8859-1] Wed Sep 3 00:19:42 2008 @@ -63,6 +63,9 @@ if exist "output-arm." ( rd /s /q "output-arm" 1> NUL 2> NUL ) + if exist "makefile-arm.auto" ( + del "makefile-arm.auto" 1> NUL 2> NUL + ) echo Done cleaning ReactOS source directory. ) else ( echo ERROR: There is no compiler output to clean. @@ -82,6 +85,9 @@ ) if exist "output-i386." ( rd /s /q "output-i386" 1> NUL 2> NUL + ) + if exist "makefile.auto" ( + del "makefile.auto" 1> NUL 2> NUL ) echo Done cleaning ReactOS source directory. ) else ( @@ -103,6 +109,9 @@ if exist "output-ppc." ( rd /s /q "output-ppc" 1> NUL 2> NUL ) + if exist "makefile-ppc.auto" ( + del "makefile-ppc.auto" 1> NUL 2> NUL + ) echo Done cleaning ReactOS source directory. ) else ( echo ERROR: There is no compiler output to clean. @@ -122,6 +131,9 @@ ) if exist "output-amd64." ( rd /s /q "output-amd64" 1> NUL 2> NUL + ) + if exist "makefile-amd64.auto" ( + del "makefile-amd64.auto" 1> NUL 2> NUL ) echo Done cleaning ReactOS source directory. ) else ( @@ -143,6 +155,9 @@ if exist "output-i386." ( rd /s /q "output-i386" 1> NUL 2> NUL ) + if exist "makefile.auto" ( + del "makefile.auto" 1> NUL 2> NUL + ) echo Done cleaning ReactOS source directory. ) else ( echo ERROR: There is no compiler output to clean. @@ -152,9 +167,6 @@ if exist "reactos." ( rd /s /q "reactos" 1> NUL 2> NUL ) -if exist "makefile.auto" ( - del "makefile.auto" 1> NUL 2> NUL -)
goto :EOF