smalltalk.bat
author Claus Gittinger <cg@exept.de>
Wed, 27 Mar 2019 23:11:37 +0100
changeset 1592 855f7f91fd66
parent 997 a24e8c1a3655
child 1435 9a1f18933e40
permissions -rwxr-xr-x
*** empty log message ***

@echo off
:
: $Header$
:
: startup script for smalltalk
: actually, simply calls stx, passing all arguments.
:
:
: In previous versions, smalltalk used to be the executable itself.
: This lead to problems on systems, where things like the PATH
: or STX_LIBDIR should be set in advance.
: Now, here is a place to do such things ...
:

if {%1}=={--help} goto usage

:
: change the line below, if
: the support stuff is not found in the
: directory where stx.com / stx.exe resides ...
: STX_LIB_DIR=<path_to_support_files>

stx %1 %2 %3 %4 %5 %6 %7 %8 %9 %10
goto end

:usage
echo.
echo usage: smalltalk stx-args
echo.
echo STX args:
stx --help

:end