*** empty log message ***
authorClaus Gittinger <cg@exept.de>
Sat, 06 Jan 1996 16:02:03 +0100
changeset 71 d928da24eaec
parent 70 a94f3573d345
child 72 b6650686d90f
*** empty log message ***
Make.proto
display.rc
h_sample_host.rc
--- a/Make.proto	Sat Jan 06 12:53:22 1996 +0100
+++ b/Make.proto	Sat Jan 06 16:02:03 1996 +0100
@@ -9,6 +9,8 @@
 RCSSOURCES=*.rc patches Make.proto
 LINKSOURCES=*.rc patches Make.proto
 
+DELIVERBINARIES=smalltalk
+
 #
 # other definitions to use for things compiled here
 #
@@ -94,7 +96,7 @@
 # create symbolic links to sources, resources etc.
 # normally (on an end-user system) these should go into usr/local/lib/smalltalk
 #
-symlinks:   resources styles newSource bitmaps binary includeLink misc
+symlinks:   resources styles newSource bitmaps bitmapLink binary binaryLink includeLink misc
 
 #
 # the standard smalltalk executable:
@@ -301,6 +303,9 @@
 	    -rm -f smalltalk minitalk tinytalk st.img
 	    -rm -f main.o
 
+postDeliverFull::
+	    (cd $(DELIVERDIR)/$(RELDIR) ; make symlinks)
+
 #
 # make a new resources subdirectory
 #
--- a/display.rc	Sat Jan 06 12:53:22 1996 +0100
+++ b/display.rc	Sat Jan 06 16:02:03 1996 +0100
@@ -265,10 +265,13 @@
 "find display name from environment or -display argument"
 
 arguments := Smalltalk commandLineArguments.
-idx := arguments indexOf:'-display'.
-idx ~~ 0 ifTrue:[
-    displayVar := arguments at:idx + 1.
-] ifFalse:[
+arguments notNil ifTrue:[
+    idx := arguments indexOf:'-display'.
+    idx ~~ 0 ifTrue:[
+        displayVar := arguments at:idx + 1.
+    ].
+].
+displayVar isNil ifTrue:[
     displayVar := OperatingSystem getEnvironment:'DISPLAY'.
 ].
 display := displayVar.
--- a/h_sample_host.rc	Sat Jan 06 12:53:22 1996 +0100
+++ b/h_sample_host.rc	Sat Jan 06 16:02:03 1996 +0100
@@ -27,8 +27,8 @@
  * - uncomment the one you have
  *"
 
-PostscriptPrinterStream autoload.
-Smalltalk at:#Printer put:PostscriptPrinterStream.
+"/ PostscriptPrinterStream autoload.
+"/ Smalltalk at:#Printer put:PostscriptPrinterStream.
 
 !
 
@@ -91,6 +91,7 @@
 "/
 "/ Smalltalk at:#Printer put:PostscriptPrinterStream.
 "/ Printer printCommand:'cat > /tmp/psfile ; ghostview psfile'.  
+"/ Printer printCommand:'cat > /tmp/psfile'.  
 "/