stx_libtool2.st
author Claus Gittinger <cg@exept.de>
Wed, 20 Sep 2006 14:46:34 +0200
changeset 2109 288724e44f45
parent 2071 54af4d66b0fa
child 2145 4233bdb1ee28
permissions -rw-r--r--
automatic checkIn
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2071
54af4d66b0fa *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2068
diff changeset
     1
"
54af4d66b0fa *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2068
diff changeset
     2
 COPYRIGHT (c) 2006 by eXept Software AG
54af4d66b0fa *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2068
diff changeset
     3
              All Rights Reserved
54af4d66b0fa *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2068
diff changeset
     4
54af4d66b0fa *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2068
diff changeset
     5
 This software is furnished under a license and may be used
54af4d66b0fa *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2068
diff changeset
     6
 only in accordance with the terms of that license and with the
54af4d66b0fa *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2068
diff changeset
     7
 inclusion of the above copyright notice.   This software may not
54af4d66b0fa *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2068
diff changeset
     8
 be provided or otherwise made available to, or used by, any
54af4d66b0fa *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2068
diff changeset
     9
 other person.  No title to or ownership of the software is
54af4d66b0fa *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2068
diff changeset
    10
 hereby transferred.
54af4d66b0fa *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2068
diff changeset
    11
"
54af4d66b0fa *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2068
diff changeset
    12
2068
c8e0136dc692 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    13
"{ Package: 'stx:libtool2' }"
c8e0136dc692 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    14
c8e0136dc692 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    15
LibraryDefinition subclass:#stx_libtool2
c8e0136dc692 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    16
	instanceVariableNames:''
c8e0136dc692 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    17
	classVariableNames:''
c8e0136dc692 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    18
	poolDictionaries:''
c8e0136dc692 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    19
	category:'* Projects *'
c8e0136dc692 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    20
!
c8e0136dc692 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    21
2071
54af4d66b0fa *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2068
diff changeset
    22
!stx_libtool2 class methodsFor:'documentation'!
54af4d66b0fa *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2068
diff changeset
    23
54af4d66b0fa *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2068
diff changeset
    24
copyright
54af4d66b0fa *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2068
diff changeset
    25
"
54af4d66b0fa *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2068
diff changeset
    26
 COPYRIGHT (c) 2006 by eXept Software AG
54af4d66b0fa *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2068
diff changeset
    27
              All Rights Reserved
54af4d66b0fa *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2068
diff changeset
    28
54af4d66b0fa *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2068
diff changeset
    29
 This software is furnished under a license and may be used
54af4d66b0fa *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2068
diff changeset
    30
 only in accordance with the terms of that license and with the
54af4d66b0fa *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2068
diff changeset
    31
 inclusion of the above copyright notice.   This software may not
54af4d66b0fa *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2068
diff changeset
    32
 be provided or otherwise made available to, or used by, any
54af4d66b0fa *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2068
diff changeset
    33
 other person.  No title to or ownership of the software is
54af4d66b0fa *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2068
diff changeset
    34
 hereby transferred.
54af4d66b0fa *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2068
diff changeset
    35
"
54af4d66b0fa *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2068
diff changeset
    36
!
54af4d66b0fa *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2068
diff changeset
    37
54af4d66b0fa *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2068
diff changeset
    38
documentation
54af4d66b0fa *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2068
diff changeset
    39
"
54af4d66b0fa *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2068
diff changeset
    40
    Build-Information for creation of the st/x standard library: stx_libtool2.
54af4d66b0fa *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2068
diff changeset
    41
    This library contains additional developer tools.
54af4d66b0fa *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2068
diff changeset
    42
"
54af4d66b0fa *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2068
diff changeset
    43
! !
2068
c8e0136dc692 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    44
c8e0136dc692 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    45
!stx_libtool2 class methodsFor:'description - compilation'!
c8e0136dc692 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    46
c8e0136dc692 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    47
additionalDefinitions_nt_dot_mak
c8e0136dc692 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    48
    ^ '
c8e0136dc692 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    49
# see stdHeader_nt for LIBTOOL2_BASE
c8e0136dc692 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    50
# LIBTOOL2_BASE   =0x65000000
c8e0136dc692 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    51
LIB_BASE_LD_ARG=-b:$(LIBTOOL2_BASE)
c8e0136dc692 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    52
'
c8e0136dc692 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    53
! !
c8e0136dc692 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    54
c8e0136dc692 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    55
!stx_libtool2 class methodsFor:'description - contents'!
c8e0136dc692 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    56
c8e0136dc692 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    57
classNamesAndAttributes
c8e0136dc692 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    58
    ^ #(
2109
288724e44f45 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2071
diff changeset
    59
        "/ <className> or (<className> attributes...)
288724e44f45 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2071
diff changeset
    60
        ('ColorEditDialog' #autoload)
288724e44f45 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2071
diff changeset
    61
        'DataSetBuilder'
288724e44f45 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2071
diff changeset
    62
        ('DirectoryView' #autoload)
288724e44f45 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2071
diff changeset
    63
        'FileSelectionBrowser'
288724e44f45 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2071
diff changeset
    64
        ('HierarchicalListEditor' #autoload)
288724e44f45 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2071
diff changeset
    65
        'ImageEditor'
288724e44f45 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2071
diff changeset
    66
        'MenuEditor'
288724e44f45 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2071
diff changeset
    67
        ('MethodFinderWindow' #autoload)
288724e44f45 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2071
diff changeset
    68
        ('MethodSelectionBrowser' #autoload)
288724e44f45 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2071
diff changeset
    69
        ('NewInspector::NewInspectorList' #autoload)
288724e44f45 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2071
diff changeset
    70
        ('NewInspector::NewInspectorListView' #autoload)
288724e44f45 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2071
diff changeset
    71
        ('NewInspector::NewInspectorPanelView' #autoload)
288724e44f45 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2071
diff changeset
    72
        ('NewInspector::NewInspectorView' #autoload)
288724e44f45 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2071
diff changeset
    73
        ('ProjectBrowser' #autoload)
288724e44f45 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2071
diff changeset
    74
        'ResourceSelectionBrowser'
288724e44f45 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2071
diff changeset
    75
        ('STXInstaller' #autoload)
288724e44f45 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2071
diff changeset
    76
        'SelectionBrowser'
288724e44f45 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2071
diff changeset
    77
        ('ShellView' #autoload)
288724e44f45 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2071
diff changeset
    78
        ('SnapShotImage' #autoload)
288724e44f45 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2071
diff changeset
    79
        ('SnapShotImageMemory' #autoload)
288724e44f45 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2071
diff changeset
    80
        ('TabListEditor' #autoload)
288724e44f45 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2071
diff changeset
    81
        ('Tools::InternationalLanguageTranslationEditor' #autoload)
288724e44f45 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2071
diff changeset
    82
        ('Tools::ProjectDefinitionEditor' #autoload)
288724e44f45 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2071
diff changeset
    83
        'UIGalleryView'
288724e44f45 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2071
diff changeset
    84
        'UIHelpTool'
288724e44f45 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2071
diff changeset
    85
        'UILayoutTool'
288724e44f45 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2071
diff changeset
    86
        'UIObjectView'
288724e44f45 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2071
diff changeset
    87
        'UIPainter'
288724e44f45 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2071
diff changeset
    88
        'UIPainterView'
288724e44f45 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2071
diff changeset
    89
        'UISelectionPanel'
288724e44f45 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2071
diff changeset
    90
        'UISpecificationTool'
288724e44f45 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2071
diff changeset
    91
        'stx_libtool2'
2068
c8e0136dc692 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    92
    )
2109
288724e44f45 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2071
diff changeset
    93
288724e44f45 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 2071
diff changeset
    94
    "Modified: / 20-09-2006 / 14:46:21 / cg"
2068
c8e0136dc692 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    95
!
c8e0136dc692 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    96
c8e0136dc692 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    97
extensionMethodNames
c8e0136dc692 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    98
    ^ #(
c8e0136dc692 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    99
    )
c8e0136dc692 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   100
! !
c8e0136dc692 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   101
c8e0136dc692 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   102
!stx_libtool2 class methodsFor:'description - project information'!
c8e0136dc692 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   103
c8e0136dc692 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   104
companyName
c8e0136dc692 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   105
    "Return a companyname which will appear in <lib>.rc"
c8e0136dc692 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   106
c8e0136dc692 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   107
    ^ 'eXept Software AG'
c8e0136dc692 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   108
!
c8e0136dc692 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   109
c8e0136dc692 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   110
description
c8e0136dc692 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   111
    "Return a description string which will appear in nt.def / bc.def"
c8e0136dc692 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   112
c8e0136dc692 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   113
    ^ 'Smalltalk/X Class library'
c8e0136dc692 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   114
!
c8e0136dc692 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   115
c8e0136dc692 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   116
legalCopyright
c8e0136dc692 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   117
    "Return a copyright string which will appear in <lib>.rc"
c8e0136dc692 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   118
c8e0136dc692 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   119
    ^ 'Copyright Claus Gittinger 1988-2006\nCopyright eXept Software AG 1998-2006'
c8e0136dc692 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   120
!
c8e0136dc692 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   121
c8e0136dc692 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   122
productName
c8e0136dc692 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   123
    "Return a product name which will appear in <lib>.rc"
c8e0136dc692 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   124
c8e0136dc692 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   125
    ^ 'Smalltalk/X'
c8e0136dc692 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   126
! !
c8e0136dc692 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   127
c8e0136dc692 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   128
!stx_libtool2 class methodsFor:'documentation'!
c8e0136dc692 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   129
c8e0136dc692 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   130
version
c8e0136dc692 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   131
    ^ '$Header$'
c8e0136dc692 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   132
! !