smalltalk.bat
changeset 349 97acd4385192
child 997 a24e8c1a3655
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/smalltalk.bat	Thu May 06 12:23:51 1999 +0200
@@ -0,0 +1,33 @@
+@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.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