OLD | NEW |
(Empty) | |
| 1 @echo OFF |
| 2 REM Copyright 2009, Google Inc. |
| 3 REM All rights reserved. |
| 4 REM |
| 5 REM Redistribution and use in source and binary forms, with or without |
| 6 REM modification, are permitted provided that the following conditions are |
| 7 REM met: |
| 8 REM |
| 9 REM * Redistributions of source code must retain the above copyright |
| 10 REM notice, this list of conditions and the following disclaimer. |
| 11 REM * Redistributions in binary form must reproduce the above |
| 12 REM copyright notice, this list of conditions and the following disclaimer |
| 13 REM in the documentation and/or other materials provided with the |
| 14 REM distribution. |
| 15 REM * Neither the name of Google Inc. nor the names of its |
| 16 REM contributors may be used to endorse or promote products derived from |
| 17 REM this software without specific prior written permission. |
| 18 REM |
| 19 REM THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 20 REM "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 21 REM LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
| 22 REM A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
| 23 REM OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
| 24 REM SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
| 25 REM LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 26 REM DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 27 REM THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 28 REM (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 29 REM OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 30 |
| 31 set PYTHONDIR=%~dp0..\..\third_party\python_24 |
| 32 call %PYTHONDIR%\setup_env.bat |
| 33 %PYTHONDIR%\python.exe %~dp0\build_docs.py %* |
OLD | NEW |