From 0ed7a8b68dd73e2b0473b8127aeca99f3bac9061 Mon Sep 17 00:00:00 2001 From: Thomas Grill Date: Wed, 1 Apr 2009 21:13:09 +0000 Subject: cleaned up grill externals - replaced with svn:externals to svn.grrrr.org/ext/trunk/ svn path=/trunk/; revision=10951 --- externals/grill/flext/build.sh | 57 ------------------------------------------ 1 file changed, 57 deletions(-) delete mode 100644 externals/grill/flext/build.sh (limited to 'externals/grill/flext/build.sh') diff --git a/externals/grill/flext/build.sh b/externals/grill/flext/build.sh deleted file mode 100644 index c467fd45..00000000 --- a/externals/grill/flext/build.sh +++ /dev/null @@ -1,57 +0,0 @@ -#! /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 - -# Arguments: -# $1 - system (pd/max) -# $2 - compiler (msvc/gcc/mingw/cygwin/bcc/icc) -# $3 - target (build/clean/install) - -unamesys=$(uname -s) - -case $unamesys in - Linux) platform=lnx;; - Darwin) platform=mac;; - CYGWIN*|MINGW*) platform=win;; - *) echo Platform $unamesys not supported; exit;; -esac - -rtsys=$1 -compiler=$2 -target=$3 - -# --- The subbatch knows which make utility to use --- -subbatch=${flext}buildsys/build-${compiler}.sh - -if - [ -n "$platform" -a -n "$rtsys" -a -n "$compiler" -a -f $subbatch ] -then - sh $subbatch $platform $rtsys $target $4 $5 $6 $7 $8 $9 -else - echo - echo SYNTAX: build.sh [system] [compiler] {target} - echo system ..... pd / max - echo compiler ... msvc / gcc / mingw / cygwin / bcc / icc - echo target ..... build \(default\) / clean / install - 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 - echo For further information read flext/build.txt - echo -fi -- cgit v1.2.1