Annotation of gforth/gforthmi, revision 1.1

1.1     ! anton       1: #! /bin/sh
        !             2: #Copyright (C) 1997 Free Software Foundation, Inc.
        !             3: 
        !             4: #This file is part of Gforth.
        !             5: 
        !             6: #Gforth is free software; you can redistribute it and/or
        !             7: #modify it under the terms of the GNU General Public License
        !             8: #as published by the Free Software Foundation; either version 2
        !             9: #of the License, or (at your option) any later version.
        !            10: 
        !            11: #This program is distributed in the hope that it will be useful,
        !            12: #but WITHOUT ANY WARRANTY; without even the implied warranty of
        !            13: #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.#See the
        !            14: #GNU General Public License for more details.
        !            15: 
        !            16: #You should have received a copy of the GNU General Public License
        !            17: #along with this program; if not, write to the Free Software
        !            18: #Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
        !            19: 
        !            20: if test $# = 0 || test $1 = --help || test $1 = -h; then
        !            21:   echo "usage: `basename $0` target-name [gforth-options]"
        !            22:   echo "creates a relocatable image 'target-name'"
        !            23:   echo "environment:"
        !            24:   echo " \$GFORTHD (default: gforth-ditc): System used for creating the fixed images"
        !            25:   echo " \$GFORTH (default: gforth): System used for computing the relocatable image"
        !            26:   exit 1
        !            27: fi
        !            28: outfile=$1; shift
        !            29: tmpfile=./temp-image.fi
        !            30: test "x$GFORTHD" != x || GFORTHD=gforth-ditc
        !            31: test "x$GFORTH" != x || GFORTH=gforth
        !            32: $GFORTHD --clear-dictionary --no-offset-im $* -e "savesystem $tmpfile"1" bye"
        !            33: $GFORTHD --clear-dictionary --offset-image $* -e "savesystem $tmpfile"2" bye"
        !            34: $GFORTH comp-i.fs -e "comp-image $tmpfile"1" $tmpfile"2" $outfile bye"
        !            35: chmod +x $outfile
        !            36: #gforth-0.2.1 -m 100000  comp-i.fs -e "comp-image $tmpfile"1" $tmpfile"2" $outfile bye"
        !            37: rm $tmpfile"1" $tmpfile"2"

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