aboutsummaryrefslogtreecommitdiff
path: root/externals/grill/flext/build.sh
diff options
context:
space:
mode:
Diffstat (limited to 'externals/grill/flext/build.sh')
-rw-r--r--externals/grill/flext/build.sh19
1 files changed, 18 insertions, 1 deletions
diff --git a/externals/grill/flext/build.sh b/externals/grill/flext/build.sh
index c6d8d675..b60d7902 100644
--- a/externals/grill/flext/build.sh
+++ b/externals/grill/flext/build.sh
@@ -1,3 +1,19 @@
+#! /bin/bash
+
+# flext - C++ layer for Max/MSP and pd (pure data) externals
+#
+# Copyright (c) 2001-2005 Thomas Grill (gr@grrrr.org)
+# For information on usage and redistribution, and for a DISCLAIMER OF ALL
+# WARRANTIES, see the file, "license.txt," in this distribution.
+#
+# more information on http://grrrr.org/ext
+# ------------------------------------------------------------------------
+#
+# To build flext or flext-based externals simply run this script.
+# Running it without arguments will print some help to the console.
+#
+# ------------------------------------------------------------------------
+
flext=${0%/*}/
if [ "$flext" = "$0"/ ]; then flext=./ ; fi
@@ -18,7 +34,7 @@ subbatch=${flext}buildsys/build-${compiler}.sh
if
[ -n "$platform" -a -n "$rtsys" -a -n "$compiler" -a -f $subbatch ]
then
- sh $subbatch $platform $rtsys $target $5 $6 $7 $8 $9
+ bash $subbatch $platform $rtsys $target $5 $6 $7 $8 $9
else
echo
echo SYNTAX: build.sh [platform] [system] [compiler] {target}
@@ -29,5 +45,6 @@ else
echo
echo Please make sure that your make program and compiler can be accessed with the
echo system path and that all relevant environment variables are properly set.
+ echo
fi