aboutsummaryrefslogtreecommitdiff
path: root/externals/grill/flext/tutorial/build.bat
diff options
context:
space:
mode:
authorThomas Grill <xovo@users.sourceforge.net>2005-04-10 22:22:40 +0000
committerThomas Grill <xovo@users.sourceforge.net>2005-04-10 22:22:40 +0000
commitce10fc0a7c760656a3577068e1457043a3d6ffd1 (patch)
tree4cb9186181c5e0dc705f6b39b6d34bd5ab0ca5ea /externals/grill/flext/tutorial/build.bat
parentd2744cd4b8d9bef38086526e8e487bafed1fad84 (diff)
fixed library versioning
updates for build system small fix updates to build system fix tutorial compilation install build system and a convenient script first steps to flext framework for OSX svn path=/trunk/; revision=2707
Diffstat (limited to 'externals/grill/flext/tutorial/build.bat')
-rw-r--r--externals/grill/flext/tutorial/build.bat8
1 files changed, 3 insertions, 5 deletions
diff --git a/externals/grill/flext/tutorial/build.bat b/externals/grill/flext/tutorial/build.bat
index dd503c8c..431454d4 100644
--- a/externals/grill/flext/tutorial/build.bat
+++ b/externals/grill/flext/tutorial/build.bat
@@ -2,16 +2,15 @@
if "%1"=="" goto syntax
if "%2"=="" goto syntax
-if "%3"=="" goto syntax
rem first check configuration
-call ..\build.bat %1 %2 %3 config "PKGINFO="
+call ..\build.bat %1 %2 config "PKGINFO=" "NAME=tutorial" "SRCS=."
if errorlevel 1 goto end
for /D %%i in (*) do (
pushd %%i
if exist package.txt (
- call ..\..\build.bat %1 %2 %3
+ call ..\..\build.bat %1 %2
)
popd
)
@@ -22,8 +21,7 @@ rem -----------------------------------------
:syntax
echo .
-echo SYNTAX: build [platform] [system] [compiler]
-echo platform ... win / lnx / mac
+echo SYNTAX: build [system] [compiler]
echo system ... pd / max
echo compiler ... msvc / gcc / mingw / cygwin / bcc / icc
echo .