From 37b6643df2df7d784a31ca73f7bb90dc109c2401 Mon Sep 17 00:00:00 2001 From: Hans-Christoph Steiner Date: Thu, 15 Dec 2005 07:26:47 +0000 Subject: removing PDP source (except debian files) before import of PDP 0.12.4 svn path=/trunk/externals/pdp/; revision=4217 --- scaf/compiler/scafc | 44 -------------------------------------------- 1 file changed, 44 deletions(-) delete mode 100755 scaf/compiler/scafc (limited to 'scaf/compiler/scafc') diff --git a/scaf/compiler/scafc b/scaf/compiler/scafc deleted file mode 100755 index ae800e5..0000000 --- a/scaf/compiler/scafc +++ /dev/null @@ -1,44 +0,0 @@ -#!/bin/sh -#scaf->scafo compiler - -if test "xx$1" == "xx" -then - echo - echo "scaf rules compiler" - echo "usage:" - echo " scafc source [dest]" - echo - exit 0 -fi - -if test "xx$2" == "xx" -then - DEST=$1o -else - DEST=$2 -fi - -if ! test -f $1 -then - echo "source module $1 not found." - exit 1 -fi - -SCAFDIR=`dirname $0` -if ! test -f $SCAFDIR/scafc.pl; -then - SCAFDIR=`dirname $SCAFDIR` - SCAFDIR="$SCAFDIR/lib/scaf" - if ! test -f $SCAFDIR/scafc.pl - then - echo "scaf library not found in $SCAFDIR" - exit 1 - fi -fi - -TMP_S=`tempfile -s .s` -$SCAFDIR/scafc.pl -I$SCAFDIR $1 > $TMP_S \ -&& gcc -export_dynamic -shared -o $DEST $TMP_S \ -&& strip --strip-unneeded $DEST \ -&& rm $TMP_S \ -|| exit 1 -- cgit v1.2.1