--- gforth/gforthmi.bat 1997/05/21 20:39:29 1.1 +++ gforth/gforthmi.bat 1998/12/20 23:17:55 1.3 @@ -1,5 +1,5 @@ -@ECHO OFF -REM Copyright (C) 1997 Free Software Foundation, Inc. +REM @ECHO OFF +REM Copyright (C) 1997-1998 Free Software Foundation, Inc. REM This file is part of Gforth. @@ -21,7 +21,7 @@ if not "%1"=="" goto makeit if not "%1"=="--help" goto makeit if not "%1"=="-h" goto makeit echo usage: gforth-makeimage target-name [gforth-options] - echo environment: GFORTHD: the Gforth binary used (default: gforth-ditc) + echo environment: GFORTHD: the Gforth binary used (default: gforth-d) echo creates a relocatable image 'target-name' goto end :makeit @@ -30,9 +30,14 @@ shift if not "%GFORTHD%"=="" goto doit set GFORTHD=gforth-d :doit -%GFORTHD% --clear-dictionary --no-offset-im %1 %2 %3 %4 %5 -e "savesystem tmp.fi1 bye" -%GFORTHD% --clear-dictionary --offset-image %1 %2 %3 %4 %5 -e "savesystem tmp.fi2 bye" -%GFORTHD% -i kernel.fi startup.fs comp-i.fs -e "comp-image tmp.fi1 tmp.fi2 %outfile% bye" +echo savesystem tmp.fi1 bye >tmp.fs +%GFORTHD% --clear-dictionary --no-offset-im %1 %2 %3 %4 %5 %6 tmp.fs +echo savesystem tmp.fi2 bye >tmp.fs +%GFORTHD% --clear-dictionary --offset-image %1 %2 %3 %4 %5 %6 tmp.fs +echo comp-image tmp.fi1 tmp.fi2 %outfile% bye >tmp.fs +%GFORTHD% -i kernl32l.fi startup.fs comp-i.fs tmp.fs +del tmp.fs del tmp.fi1 del tmp.fi2 :end + \ No newline at end of file