File:  [gforth] / gforth / preforth.in
Revision 1.1: download - view: text, annotated - select for diffs
Fri Apr 25 22:17:17 2008 UTC (15 years, 11 months ago) by anton
Branches: MAIN
CVS tags: HEAD
Bugfix: make and make dist don't need pre-installed Gforth
FORCE_REG_UNNECESSARY now defined automatically and used better
documentation bugfix

    1: #!/bin/sh
    2: 
    3: test -z "$ENGINE" && ENGINE=./gforth
    4: if [ -x $ENGINE ]
    5: then 
    6:   path1="$1"
    7:   path2="$2"
    8:   shift; shift
    9:   set -x -v
   10:   $ENGINE -i @kernel_fi@ $path1 $path2 exboot.fs startup.fs "$@"
   11: else
   12:   @PREFORTH@ "$@"
   13: fi

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