SCM Repository
View of /sml/trunk/config/_ml-build
Parent Directory
|
Revision Log
Revision 1494 -
(download)
(annotate)
Thu May 20 03:09:17 2004 UTC (16 years, 11 months ago) by mblume
File size: 1410 byte(s)
Thu May 20 03:09:17 2004 UTC (16 years, 11 months ago) by mblume
File size: 1410 byte(s)
made ml-build clean up after itself better
#!@SHELL@ if [ x${SMLNJ_HOME} = x ] ; then BIN_DIR=@BINDIR@ else if [ x${CM_PATHCONFIG} = x ] ; then CM_PATHCONFIG=${SMLNJ_HOME}/lib/pathconfig export CM_PATHCONFIG fi BIN_DIR=${SMLNJ_HOME}/bin 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 root-group main-function heapfile exit 1 } while [ $# != 0 ] ; do case $1 in -D*|-U*|-C*) dulist="$dulist $1" shift ;; *) break ;; esac done if [ $# != 3 ] ; then usage wrong number of arguments fi root=$1 main=$2 heap=$3 rare=XYZ_XXX_0123 cat >$smlfile <<EOF structure ${rare} = struct val _ = SMLofNJ.exportFn ("${heap}", ${main}) end EOF cat >$cmfile <<EOF Group structure ${rare} is \$/basis.cm ${root} ${smlfile} EOF # Invoke sml with special option that causes CM to do its magic. # Unless the heap image exists and is up-to-date CM will write the arguments # for the link script into $linkargsfile. # (See src/cm/main/cm-boot.sml [function "mlbuild"] for details.) if $SML $dulist @CMbuild $root $cmfile $heap $listfile $linkargsfile ; then if [ -r $linkargsfile ]; then $LINK `cat $linkargsfile` fi else exit $? fi
root@smlnj-gforge.cs.uchicago.edu | ViewVC Help |
Powered by ViewVC 1.0.0 |