Annotation of gforth/gforth-makeimage, revision 1.5

1.1       anton       1: #! /bin/sh
1.4       anton       2: #Copyright (C) 1997 Free Software Foundation, Inc.
1.3       pazsan      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: 
1.2       anton      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'"
1.5     ! anton      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"
1.2       anton      26:   exit 1
                     27: fi
1.1       anton      28: outfile=$1; shift
                     29: tmpfile=./temp-image.fi
1.3       pazsan     30: test "x$GFORTHD" != x || GFORTHD=gforth-ditc
1.5     ! anton      31: test "x$GFORTH" != x || GFORTH=gforth
1.2       anton      32: $GFORTHD --clear-dictionary --no-offset-im $* -e "savesystem $tmpfile"1" bye"
                     33: $GFORTHD --clear-dictionary --offset-image $* -e "savesystem $tmpfile"2" bye"
1.5     ! anton      34: $GFORTH comp-image.fs -e "comp-image $tmpfile"1" $tmpfile"2" $outfile bye"
        !            35: chmod +x $outfile
1.1       anton      36: #gforth-0.2.1 -m 100000  comp-image.fs -e "comp-image $tmpfile"1" $tmpfile"2" $outfile bye"
                     37: rm $tmpfile"1" $tmpfile"2"

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