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