1@rem
2@rem OpenBOR - http://www.LavaLit.com
3@rem -----------------------------------------------------------------------
4@rem All rights reserved, see LICENSE in OpenBOR root for details.
5@rem
6@rem Copyright (c) 2004 - 2011 OpenBOR Team
7@rem
8
9@rem ----------------------- Bash NIX Shell Scripts ------------------------
10
11@setlocal
12@echo off
13set BUILDBATCH=1
14set TOOLS=../tools/bin;../tools/7-Zip;../tools/svn/bin
15set PATH=%TOOLS%
16bash.exe build.sh all
17@endlocal
18
19@rem ----------------------- Batch CMD Line Scripts ------------------------
20
21@setlocal
22@echo off
23@if not exist "%CD%\releases\PSP\OpenBOR\EBOOT.PBP" goto missing
24@if not exist "%CD%\releases\GP2X\OpenBOR\OpenBOR.gpe" goto missing
25@if not exist "%CD%\releases\WIZ\OpenBOR\OpenBOR.gpe" goto missing
26@if not exist "%CD%\releases\DC\OpenBOR\1ST_READ.BIN" goto missing
27@if not exist "%CD%\releases\WINDOWS\OpenBOR\OpenBOR.exe" goto missing
28
29set TOOLS=../tools/bin;../tools/7-Zip;../tools/svn/bin
30set PATH=%TOOLS%;%PATH%
31call xbox/make.bat
32bash.exe version.sh 1
33:missing
34@endlocal
35
36pause
37
38