make.bat: add 'clean' command

This commit is contained in:
Campbell Barton
2016-01-02 02:30:02 +11:00
parent 4ccc62dbc8
commit fe5efe4196

View File

@@ -59,6 +59,7 @@ if NOT "%1" == "" (
echo - bpy
echo.
echo Utilities ^(not associated with building^)
echo - clean
echo - update
goto EOF
)
@@ -96,6 +97,14 @@ if NOT "%1" == "" (
git pull --rebase
git submodule foreach git pull --rebase origin master
goto EOF
) else if "%1" == "clean" (
msbuild ^
%BUILD_DIR%\Blender.sln ^
/target:clean ^
/property:Configuration=%BUILD_TYPE% ^
/verbosity:minimal
echo Cleaned "%BUILD_DIR%"
goto EOF
) else (
echo Command "%1" unknown, aborting!
goto EOF