source: gs2-extensions/music-stand/trunk/CASCADE-MAKE.bat@ 22129

Last change on this file since 22129 was 22129, checked in by davidb, 14 years ago

First pass at setting up necessary packages, needed for Evince to compile

  • Property svn:executable set to *
File size: 671 bytes
Line 
1@echo off
2pushd "%CD%"
3CD /D "%~dp0"
4
5call cascade-make/lib/cascade-lib.bat
6
7
8echo "Test for directory in Windows might not be correct syntax!!"
9if not exist "%GEXTVIDEO_INSTALLED%" (
10 echo Creating %GEXTVIDEO_INSTALLED%
11 mkdir "%GEXTVIDEO_INSTALLED%"
12)
13
14set dirlist=runtime-srcpack
15
16
17for /D %%d IN (%dirlist%) do (
18 echo Running %%d\CASCADE-MAKE.bat %*
19
20 (cd %%d && call CASCADE-MAKE.bat %* && cd ..)
21
22 if not ERRORLEVEL 0 (
23 echo Error encountered running %%d\CASCADE-MAKE.bat
24 goto ErrorExitPos1
25 )
26)
27
28
29if "%install%" == "1" (
30 type README.txt
31)
32goto End
33
34:ErrorExitNeg1
35set ERRORLEVEL=-1
36goto End
37
38:ErrorExitPos1
39set ERRORLEVEL=1
40goto End
41
42:End
43
44popd
Note: See TracBrowser for help on using the repository browser.