File:  [gforth] / gforth / gforthmi.bat
Revision 1.4: download - view: text, annotated - select for diffs
Sun Jul 23 19:29:56 2000 UTC (23 years, 9 months ago) by pazsan
Branches: MAIN
CVS tags: HEAD
Made Gforth compile on DOS. Cleaned up some minor parts in make binonlydist
Also renamed

unbuffered.fs -> unbuffer.fs
exceptions.fs -> except.fs
backtrace.fs -> backtrac.fs

in the CVS archive (do that in your gforth/CVS/Entries before checking out!!!)

If you want to make my life more easy, please refrain from using >8.3 file
names for vital parts.

    1: REM @ECHO OFF
    2: REM Copyright (C) 1997-1998 Free Software Foundation, Inc.
    3: 
    4: REM This file is part of Gforth.
    5: 
    6: REM Gforth is free software; you can redistribute it and/or
    7: REM modify it under the terms of the GNU General Public License
    8: REM as published by the Free Software Foundation; either version 2
    9: REM of the License, or (at your option) any later version.
   10: 
   11: REM This program is distributed in the hope that it will be useful,
   12: REM but WITHOUT ANY WARRANTY; without even the implied warranty of
   13: REM MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.REM See the
   14: REM GNU General Public License for more details.
   15: 
   16: REM You should have received a copy of the GNU General Public License
   17: REM along with this program; if not, write to the Free Software
   18: REM Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
   19: 
   20: if not x%1==x goto makeit
   21: if not x%1==x--help" goto makeit
   22: if not x%1==x-h" goto makeit
   23:   echo usage: gforth-makeimage target-name [gforth-options]
   24:   echo   environment: GFORTHD: the Gforth binary used (default: gforth-d)
   25:   echo creates a relocatable image 'target-name'
   26:   goto end
   27: :makeit
   28: set outfile=%1
   29: shift
   30: set GFORTHPAR=
   31: :accupars
   32: if x%1==x goto accudone
   33: set GFORTHPAR=%GFORTHPAR% %1
   34: shift
   35: goto accupars
   36: :accudone
   37: if not x%GFORTHD%==x goto doit
   38: set GFORTHD=gforth-d
   39: :doit
   40: echo savesystem tmp.fi1 bye >tmp.fs
   41: %GFORTHD% -c -n %GFORTHPAR% tmp.fs
   42: echo savesystem tmp.fi2 bye >tmp.fs
   43: %GFORTHD% -c -o %GFORTHPAR% tmp.fs
   44: echo comp-image tmp.fi1 tmp.fi2 %outfile% bye >tmp.fs
   45: %GFORTHD% -i kernl32l.fi startup.fs  comp-i.fs tmp.fs
   46: del tmp.fs
   47: del tmp.fi1
   48: del tmp.fi2
   49: :end
   50: 

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