| 1 : |
anton
|
1.1
|
#! /bin/sh |
| 2 : |
|
|
# @configure_input@ |
| 3 : |
anton
|
1.6
|
#Copyright (C) 1997,1998,2000 Free Software Foundation, Inc. |
| 4 : |
anton
|
1.1
|
|
| 5 : |
|
|
#This file is part of Gforth. |
| 6 : |
|
|
|
| 7 : |
|
|
#Gforth is free software; you can redistribute it and/or |
| 8 : |
|
|
#modify it under the terms of the GNU General Public License |
| 9 : |
|
|
#as published by the Free Software Foundation; either version 2 |
| 10 : |
|
|
#of the License, or (at your option) any later version. |
| 11 : |
|
|
|
| 12 : |
|
|
#This program is distributed in the hope that it will be useful, |
| 13 : |
|
|
#but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 14 : |
|
|
#MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.#See the |
| 15 : |
|
|
#GNU General Public License for more details. |
| 16 : |
|
|
|
| 17 : |
|
|
#You should have received a copy of the GNU General Public License |
| 18 : |
|
|
#along with this program; if not, write to the Free Software |
| 19 : |
anton
|
1.7
|
#Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111, USA. |
| 20 : |
anton
|
1.1
|
|
| 21 : |
|
|
prefix=@prefix@ |
| 22 : |
|
|
exec_prefix=@exec_prefix@ |
| 23 : |
|
|
test "x$GFORTHD" != x || GFORTHD=$prefix/lib/gforth/@VERSION@/gforth-ditc |
| 24 : |
anton
|
1.3
|
test "x$GFORTH" != x || GFORTH="@bindir@/gforth-@VERSION@ --die-on-signal" |
| 25 : |
anton
|
1.1
|
if test $# = 0 || test $1 = --help || test $1 = -h; then |
| 26 : |
anton
|
1.4
|
echo "usage: `basename $0` [--application] target-name [gforth-options]" |
| 27 : |
anton
|
1.1
|
echo "creates a relocatable image 'target-name'" |
| 28 : |
|
|
echo "environment:" |
| 29 : |
|
|
echo " \$GFORTHD (default: $GFORTHD): Engine used for creating the fixed images" |
| 30 : |
|
|
echo " \$GFORTH (default: $GFORTH): Engine used for computing the relocatable image" |
| 31 : |
|
|
test $# != 0 || exit 1 |
| 32 : |
|
|
exit 0 |
| 33 : |
|
|
elif test $1 = --version || test $1 = -v; then |
| 34 : |
|
|
echo "gforthmi (@PACKAGE@) @VERSION@" |
| 35 : |
|
|
$GFORTH --version |
| 36 : |
|
|
echo 'Copyright (C) 1998 Free Software Foundation, Inc.' |
| 37 : |
|
|
echo 'This program is part of Gforth' |
| 38 : |
|
|
$GFORTH -e "license bye" |
| 39 : |
|
|
exit 0 |
| 40 : |
anton
|
1.4
|
elif test $1 = --application; then |
| 41 : |
|
|
application=yes |
| 42 : |
|
|
shift |
| 43 : |
anton
|
1.5
|
else |
| 44 : |
|
|
true #old shells require this |
| 45 : |
anton
|
1.1
|
fi |
| 46 : |
|
|
outfile=$1; shift |
| 47 : |
|
|
tmpfile=./temp-image.fi |
| 48 : |
anton
|
1.2
|
$GFORTHD --clear-dictionary --no-offset-im --die-on-signal $* -e "savesystem $tmpfile"1" bye" |
| 49 : |
|
|
$GFORTHD --clear-dictionary --offset-image --die-on-signal $* -e "savesystem $tmpfile"2" bye" |
| 50 : |
anton
|
1.3
|
$GFORTH comp-i.fs -e "comp-image $tmpfile"1" $tmpfile"2" $outfile bye" |
| 51 : |
anton
|
1.1
|
chmod +x $outfile |
| 52 : |
|
|
#gforth-0.2.1 -m 100000 comp-i.fs -e "comp-image $tmpfile"1" $tmpfile"2" $outfile bye" |
| 53 : |
|
|
rm $tmpfile"1" $tmpfile"2" |
| 54 : |
anton
|
1.4
|
if test x$application = xyes; then |
| 55 : |
|
|
$GFORTH -e "s\" '$outfile\"" make-app.fs |
| 56 : |
anton
|
1.5
|
else |
| 57 : |
|
|
true #old shells require this |
| 58 : |
anton
|
1.4
|
fi |
| 59 : |
|
|
|