LibraryBuilder.st
changeset 2628 c20c71989aa1
parent 1630 0303b4b6a5ce
child 7088 448b68fa16e8
equal deleted inserted replaced
2627:e633d9928ddd 2628:c20c71989aa1
       
     1 "
       
     2  COPYRIGHT (c) 1998 by eXept Software AG
       
     3               All Rights Reserved
       
     4 
       
     5  This software is furnished under a license and may be used
       
     6  only in accordance with the terms of that license and with the
       
     7  inclusion of the above copyright notice. This software may not
       
     8  be provided or otherwise made available to, or used by, any
       
     9  other person. No title to or ownership of the software is
       
    10  hereby transferred.
       
    11 "
       
    12 
       
    13 
       
    14 
       
    15 
     1 ApplicationBuilder subclass:#LibraryBuilder
    16 ApplicationBuilder subclass:#LibraryBuilder
     2 	instanceVariableNames:''
    17 	instanceVariableNames:''
     3 	classVariableNames:''
    18 	classVariableNames:''
     4 	poolDictionaries:''
    19 	poolDictionaries:''
     5 	category:'Interface-Smalltalk'
    20 	category:'Interface-Smalltalk'
     6 !
    21 !
     7 
    22 
     8 !LibraryBuilder class methodsFor:'documentation'!
    23 !LibraryBuilder class methodsFor:'documentation'!
     9 
    24 
       
    25 copyright
       
    26 "
       
    27  COPYRIGHT (c) 1998 by eXept Software AG
       
    28               All Rights Reserved
       
    29 
       
    30  This software is furnished under a license and may be used
       
    31  only in accordance with the terms of that license and with the
       
    32  inclusion of the above copyright notice. This software may not
       
    33  be provided or otherwise made available to, or used by, any
       
    34  other person. No title to or ownership of the software is
       
    35  hereby transferred.
       
    36 "
       
    37 
       
    38 
       
    39 
       
    40 !
       
    41 
    10 documentation
    42 documentation
    11 "
    43 "
       
    44     WARNING: unfinished - do not use.
       
    45 
    12     The Library Builder of ST/X allows you to build ST/X-libraries by following steps:
    46     The Library Builder of ST/X allows you to build ST/X-libraries by following steps:
    13 
    47 
    14         0. Clobber the target directory of the application
    48         0. Clobber the target directory of the application
    15         1. File out the source code of all library classes
    49         1. File out the source code of all library classes
    16         2. Link the source code of all library classes into the source directory
    50         2. Link the source code of all library classes into the source directory
  1062 ! !
  1096 ! !
  1063 
  1097 
  1064 !LibraryBuilder class methodsFor:'documentation'!
  1098 !LibraryBuilder class methodsFor:'documentation'!
  1065 
  1099 
  1066 version
  1100 version
  1067     ^ '$Header: /cvs/stx/stx/libtool/LibraryBuilder.st,v 1.6 1998-05-02 10:55:38 tz Exp $'
  1101     ^ '$Header: /cvs/stx/stx/libtool/LibraryBuilder.st,v 1.7 2000-02-18 14:44:47 cg Exp $'
  1068 ! !
  1102 ! !