Diff for /gforth/gforthmi.bat between versions 1.1 and 1.5

version 1.1, 1997/05/21 20:39:29 version 1.5, 2000/07/30 19:56:05
Line 1 Line 1
 @ECHO OFF  REM @ECHO OFF
 REM Copyright (C) 1997 Free Software Foundation, Inc.  REM Copyright (C) 1997-1998 Free Software Foundation, Inc.
   
 REM This file is part of Gforth.  REM This file is part of Gforth.
   
Line 17  REM You should have received a copy of t Line 17  REM You should have received a copy of t
 REM along with this program; if not, write to the Free Software  REM along with this program; if not, write to the Free Software
 REM Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  REM Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
   
 if not "%1"=="" goto makeit  if not x%1==x goto makeit
 if not "%1"=="--help" goto makeit  if not x%1==x--help goto makeit
 if not "%1"=="-h" goto makeit  if not x%1==x-h goto makeit
   echo usage: gforth-makeimage target-name [gforth-options]    echo usage: gforthmi target-name [gforth-options]
   echo   environment: GFORTHD: the Gforth binary used (default: gforth-ditc)  
   echo creates a relocatable image 'target-name'    echo creates a relocatable image 'target-name'
   goto end    goto end
 :makeit  :makeit
 set outfile=%1  set outfile=%1
 shift  shift
 if not "%GFORTHD%"=="" goto doit  set GFORTHPAR=
 set GFORTHD=gforth-d  :accupars
 :doit  if x%1==x goto accudone
 %GFORTHD% --clear-dictionary --no-offset-im %1 %2 %3 %4 %5 -e "savesystem tmp.fi1 bye"  set GFORTHPAR=%GFORTHPAR% %1
 %GFORTHD% --clear-dictionary --offset-image %1 %2 %3 %4 %5 -e "savesystem tmp.fi2 bye"  shift
 %GFORTHD% -i kernel.fi startup.fs  comp-i.fs -e "comp-image tmp.fi1 tmp.fi2 %outfile% bye"  goto accupars
   :accudone
   echo savesystem tmp.fi1 bye >tmp.fs
   gforth-d -c -n %GFORTHPAR% tmp.fs
   echo savesystem tmp.fi2 bye >tmp.fs
   gforth-d -c -o %GFORTHPAR% tmp.fs
   echo comp-image tmp.fi1 tmp.fi2 %outfile% bye >tmp.fs
   gforth-d -i kernl32l.fi startup.fs  comp-i.fs tmp.fs
   del tmp.fs
 del tmp.fi1  del tmp.fi1
 del tmp.fi2  del tmp.fi2
 :end  :end
   
   

Removed from v.1.1  
changed lines
  Added in v.1.5


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