aboutsummaryrefslogtreecommitdiff
path: root/externals/grill/flext/tutorial/build.sh
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.sh
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.sh')
-rw-r--r--externals/grill/flext/tutorial/build.sh7
1 files changed, 3 insertions, 4 deletions
diff --git a/externals/grill/flext/tutorial/build.sh b/externals/grill/flext/tutorial/build.sh
index 42968838..6ea19cb1 100644
--- a/externals/grill/flext/tutorial/build.sh
+++ b/externals/grill/flext/tutorial/build.sh
@@ -1,16 +1,16 @@
#! /bin/bash
if
- [ -n "$1" -a -n "$2" -a -n "$3" ]
+ [ -n "$1" -a -n "$2" ]
then
# make config first
if
- bash ../build.sh $1 $2 $3 config "PKGINFO="
+ bash ../build.sh $1 $2 config "PKGINFO=" "NAME=tutorial" "SRCS=\"\""
then
for i in * ; do
if [ -e $i/package.txt ] ; then
pushd $i
- bash ../../build.sh $1 $2 $3
+ bash ../../build.sh $1 $2
popd
fi
done
@@ -18,7 +18,6 @@ then
else
echo
echo SYNTAX: build.sh [platform] [system] [compiler]
- echo platform ... win / lnx / mac
echo system ..... pd / max
echo compiler ... msvc / gcc / mingw / cygwin / bcc / icc
echo