SCM Repository
View of /sml/trunk/src/ml-burg/build
Parent Directory
|
Revision Log
Revision 418 -
(download)
(annotate)
Fri Sep 3 23:51:27 1999 UTC (21 years, 7 months ago) by monnier
Original Path: sml/branches/SMLNJ/src/ml-burg/build
File size: 890 byte(s)
Fri Sep 3 23:51:27 1999 UTC (21 years, 7 months ago) by monnier
Original Path: sml/branches/SMLNJ/src/ml-burg/build
File size: 890 byte(s)
version 110.20
#!/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. # -sml path -- specify the path to the sml executable, "../../bin/sml" # is the default. CMD="build" ROOT="ml-burg" HEAP_IMAGE="" BIN="../../bin" SML="$BIN/sml" # # process command-line options # ARGS="" 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 ;; -sml) if [ "$#" = "0" ]; then echo "$CMD: must supply path for -sml option" exit 1 fi SML=$1; shift ;; *) ARGS="$ARGS $arg" ;; esac done if [ "$HEAP_IMAGE" = "" ]; then HEAP_IMAGE="$ROOT" fi $SML $ARGS <<ZZZ CM.make "sources.cm"; Main.export "$HEAP_IMAGE" : unit; ZZZ
root@smlnj-gforge.cs.uchicago.edu | ViewVC Help |
Powered by ViewVC 1.0.0 |