SCM Repository
View of /sml/trunk/src/ml-burg/build
Parent Directory
|
Revision Log
Revision 651 -
(download)
(annotate)
Thu Jun 1 18:34:03 2000 UTC (20 years, 10 months ago) by monnier
File size: 693 byte(s)
Thu Jun 1 18:34:03 2000 UTC (20 years, 10 months ago) by monnier
File size: 693 byte(s)
bring revisions from the vendor branch to the trunk
#!/bin/sh # # build script for ml-burg under the new runtime system. # # options: # -o image -- specify the name of the heap image, "ml-burg" # is the default. CMD=$0 ROOT="ml-burg" HEAP_IMAGE="" TWOUP=`pwd`/../.. BIN=${INSTALLDIR:-$TWOUP}/bin BUILD=$BIN/ml-build # # process command-line options # while [ "$#" != "0" ] ; do arg=$1 shift case $arg in -o) if [ "$#" = "0" ]; then echo "$CMD: must supply image name for -o option" exit 1 fi HEAP_IMAGE=$1; shift ;; *) echo $CMD: invalid argument: $arg exit 1 ;; esac done if [ "$HEAP_IMAGE" = "" ]; then HEAP_IMAGE="$ROOT" fi $BUILD ml-burg.cm Main.main $HEAP_IMAGE exit 0
root@smlnj-gforge.cs.uchicago.edu | ViewVC Help |
Powered by ViewVC 1.0.0 |