swh:1:snp:af87cd67498ef4fe47c76ed3e7caffe5b61facaf
Raw File
Tip revision: a50a9e1ad04c166f883037b0c555e4045ee4be0b authored by Unknown Author on 14 May 2001, 09:37:03 UTC
This commit was manufactured by cvs2svn to create tag 'v3-01-02'.
Tip revision: a50a9e1
cc.sh
#! /bin/sh

# Simple interface to CL, tansforming -o <obj> to -Fo<obj>

args=

while [ "$1" != "" ]; do
   case "$1" in
   -o) args="$args -Fo"; shift; args="$args$1" ;;
   *) args="$args $1" ;;
   esac
   shift
done

cl $args

exit $?
back to top