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