#!@SHELL@ if [ x${SMLNJ_HOME} = x ] ; then BIN_DIR="@BINDIR@" LIB_DIR="@LIBDIR@" else BIN_DIR=${SMLNJ_HOME}/bin LIB_DIR=${SMLNJ_HOME}/lib fi if [ x"$CM_PATHCONFIG" = x ] ; then CM_PATHCONFIG=${LIB_DIR}/pathconfig export CM_PATHCONFIG fi SML=$BIN_DIR/sml LINK=$BIN_DIR/.link-sml thisscript=$0 xx=$$ smlfile=$xx-export.sml cmfile=$xx-export.cm listfile=$xx-BOOTLIST linkargsfile=$xx-LINKARGS dulist='' trap 'rm -rf $smlfile $cmfile $listfile $linkargsfile @CMDIRARC@/*/$smlfile' 0 1 2 3 15 usage() { echo ${thisscript}: $* echo Usage: $thisscript '[-S setup] root-group [main-function [heapfile]]' exit 1 } setup= while [ $# != 0 ] ; do case $1 in -D*|-U*|-C*) dulist="$dulist $1" shift ;; -S) shift if [ $# = 0 ] ; then usage missing argument for -S fi setup=$1 shift ;; *) break ;; esac done if [ $# = 4 ] ; then setup=$1 root=$2 main=$3 heap=$4 elif [ $# = 3 ] ; then root=$1 main=$2 heap=$3 elif [ $# = 2 ] ; then root=$1 main=$2 heap=`basename "$root" .cm` elif [ $# = 1 ] ; then root=$1 # quick hack for now: main=Test.main heap=`basename "$root" .cm` else usage no CM description file specified fi rare=XYZ_XXX_0123 cat >$smlfile <$cmfile <