Annotation of gforth/gforth-makeimage, revision 1.1

1.1     ! anton       1: #! /bin/sh
        !             2: outfile=$1; shift
        !             3: tmpfile=./temp-image.fi
        !             4: test x$GFORTH != x || GFORTH=gforth-ditc
        !             5: $GFORTH --clear-dictionary $* -e "savesystem $tmpfile"1" bye"
        !             6: $GFORTH --clear-dictionary --offset-image $* -e "savesystem $tmpfile"2" bye"
        !             7: ./gforth -m 100000 -p. -i ./kernel.fi startup.fs  comp-image.fs -e "comp-image $tmpfile"1" $tmpfile"2" $outfile bye"
        !             8: #gforth-0.2.1 -m 100000  comp-image.fs -e "comp-image $tmpfile"1" $tmpfile"2" $outfile bye"
        !             9: rm $tmpfile"1" $tmpfile"2"

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>