stx_libtool2.st
author Claus Gittinger <cg@exept.de>
Tue, 26 Feb 2008 11:25:37 +0100
changeset 2298 d5467f85544f
parent 2292 2e16dc38d3d2
child 2307 1a2f58172d65
permissions -rw-r--r--
*** empty log message ***
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
"
2068
c8e0136dc692 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    12
"{ Package: 'stx:libtool2' }"
c8e0136dc692 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    13
c8e0136dc692 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    14
LibraryDefinition subclass:#stx_libtool2
c8e0136dc692 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    15
	instanceVariableNames:''
c8e0136dc692 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    16
	classVariableNames:''
c8e0136dc692 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    17
	poolDictionaries:''
2162
37159708ecef *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2149
diff changeset
    18
	category:'* Projects & Packages *'
2068
c8e0136dc692 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    19
!
c8e0136dc692 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    20
2071
54af4d66b0fa *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2068
diff changeset
    21
!stx_libtool2 class methodsFor:'documentation'!
54af4d66b0fa *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2068
diff changeset
    22
54af4d66b0fa *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2068
diff changeset
    23
copyright
54af4d66b0fa *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2068
diff changeset
    24
"
54af4d66b0fa *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2068
diff changeset
    25
 COPYRIGHT (c) 2006 by eXept Software AG
54af4d66b0fa *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2068
diff changeset
    26
              All Rights Reserved
54af4d66b0fa *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2068
diff changeset
    27
54af4d66b0fa *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2068
diff changeset
    28
 This software is furnished under a license and may be used
54af4d66b0fa *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2068
diff changeset
    29
 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
    30
 inclusion of the above copyright notice.   This software may not
54af4d66b0fa *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2068
diff changeset
    31
 be provided or otherwise made available to, or used by, any
54af4d66b0fa *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2068
diff changeset
    32
 other person.  No title to or ownership of the software is
54af4d66b0fa *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2068
diff changeset
    33
 hereby transferred.
54af4d66b0fa *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2068
diff changeset
    34
"
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
documentation
54af4d66b0fa *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2068
diff changeset
    38
"
54af4d66b0fa *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2068
diff changeset
    39
    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
    40
    This library contains additional developer tools.
54af4d66b0fa *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2068
diff changeset
    41
"
54af4d66b0fa *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2068
diff changeset
    42
! !
2068
c8e0136dc692 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    43
2145
4233bdb1ee28 automatic checkIn
boris
parents: 2109
diff changeset
    44
!stx_libtool2 class methodsFor:'description'!
4233bdb1ee28 automatic checkIn
boris
parents: 2109
diff changeset
    45
2172
b3bdee17920b Fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 2162
diff changeset
    46
excludedFromPreRequisites
b3bdee17920b Fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 2162
diff changeset
    47
    ^ #(
b3bdee17920b Fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 2162
diff changeset
    48
        #'stx:libhtml'    "HTMLDocumentView - referenced by UIPainter>>doOpenWidgetDocumentation "
b3bdee17920b Fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 2162
diff changeset
    49
    )
b3bdee17920b Fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 2162
diff changeset
    50
!
b3bdee17920b Fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 2162
diff changeset
    51
2145
4233bdb1ee28 automatic checkIn
boris
parents: 2109
diff changeset
    52
preRequisites
4233bdb1ee28 automatic checkIn
boris
parents: 2109
diff changeset
    53
    ^ #(
2172
b3bdee17920b Fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 2162
diff changeset
    54
        #'stx:libbasic'    "Object - superclass of UIPainter::TreeView "
2145
4233bdb1ee28 automatic checkIn
boris
parents: 2109
diff changeset
    55
        #'stx:libbasic2'    "List - referenced by DataSetBuilder>>updateColumnView "
4233bdb1ee28 automatic checkIn
boris
parents: 2109
diff changeset
    56
        #'stx:libtool'    "SystemBrowser - referenced by ResourceSelectionBrowser::ResourceMethod>>iconOn: "
4233bdb1ee28 automatic checkIn
boris
parents: 2109
diff changeset
    57
        #'stx:libui'    "SpecCollection - referenced by UIPainterView>>fullSpecFor: "
2172
b3bdee17920b Fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 2162
diff changeset
    58
        #'stx:libview'    "SimpleView - superclass of UIObjectView "
b3bdee17920b Fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 2162
diff changeset
    59
        #'stx:libview2'    "Model - superclass of UILayoutTool::Point "
b3bdee17920b Fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 2162
diff changeset
    60
        #'stx:libwidg'    "ObjectView - superclass of UIPainterView "
b3bdee17920b Fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 2162
diff changeset
    61
        #'stx:libwidg2'    "HierarchicalItem - superclass of MenuEditor::Item "
2145
4233bdb1ee28 automatic checkIn
boris
parents: 2109
diff changeset
    62
    )
4233bdb1ee28 automatic checkIn
boris
parents: 2109
diff changeset
    63
! !
4233bdb1ee28 automatic checkIn
boris
parents: 2109
diff changeset
    64
2068
c8e0136dc692 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    65
!stx_libtool2 class methodsFor:'description - compilation'!
c8e0136dc692 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    66
2149
bac46743cd66 Rename nt.mak to bc.mak
Stefan Vogel <sv@exept.de>
parents: 2145
diff changeset
    67
additionalDefinitions_bc_dot_mak
2068
c8e0136dc692 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    68
    ^ '
2149
bac46743cd66 Rename nt.mak to bc.mak
Stefan Vogel <sv@exept.de>
parents: 2145
diff changeset
    69
# see stdHeader_bc for LIBTOOL2_BASE
2068
c8e0136dc692 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    70
# LIBTOOL2_BASE   =0x65000000
c8e0136dc692 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    71
LIB_BASE_LD_ARG=-b:$(LIBTOOL2_BASE)
c8e0136dc692 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    72
'
c8e0136dc692 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    73
! !
c8e0136dc692 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    74
c8e0136dc692 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    75
!stx_libtool2 class methodsFor:'description - contents'!
c8e0136dc692 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    76
c8e0136dc692 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    77
classNamesAndAttributes
c8e0136dc692 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    78
    ^ #(
2145
4233bdb1ee28 automatic checkIn
boris
parents: 2109
diff changeset
    79
        "<className> or (<className> attributes...) in load order"
4233bdb1ee28 automatic checkIn
boris
parents: 2109
diff changeset
    80
        ColorEditDialog
4233bdb1ee28 automatic checkIn
boris
parents: 2109
diff changeset
    81
        DataSetBuilder
2172
b3bdee17920b Fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 2162
diff changeset
    82
        (DirectoryView autoload)
b3bdee17920b Fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 2162
diff changeset
    83
        (HierarchicalListEditor autoload)
2145
4233bdb1ee28 automatic checkIn
boris
parents: 2109
diff changeset
    84
        ImageEditor
4233bdb1ee28 automatic checkIn
boris
parents: 2109
diff changeset
    85
        MenuEditor
2172
b3bdee17920b Fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 2162
diff changeset
    86
        (MethodFinderWindow autoload)
b3bdee17920b Fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 2162
diff changeset
    87
        (MethodSelectionBrowser autoload)
b3bdee17920b Fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 2162
diff changeset
    88
        (#'NewInspector::NewInspectorList' autoload)
b3bdee17920b Fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 2162
diff changeset
    89
        (#'NewInspector::NewInspectorListView' autoload)
b3bdee17920b Fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 2162
diff changeset
    90
        (#'NewInspector::NewInspectorPanelView' autoload)
b3bdee17920b Fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 2162
diff changeset
    91
        (#'NewInspector::NewInspectorView' autoload)
b3bdee17920b Fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 2162
diff changeset
    92
        (ProjectBrowser autoload)
b3bdee17920b Fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 2162
diff changeset
    93
        (STXInstaller autoload)
2145
4233bdb1ee28 automatic checkIn
boris
parents: 2109
diff changeset
    94
        SelectionBrowser
2172
b3bdee17920b Fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 2162
diff changeset
    95
        (ShellView autoload)
b3bdee17920b Fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 2162
diff changeset
    96
        (SnapShotImage autoload)
b3bdee17920b Fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 2162
diff changeset
    97
        (SnapShotImageMemory autoload)
b3bdee17920b Fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 2162
diff changeset
    98
        (TabListEditor autoload)
b3bdee17920b Fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 2162
diff changeset
    99
        (#'Tools::InternationalLanguageTranslationEditor' autoload)
b3bdee17920b Fix preRequisites
Stefan Vogel <sv@exept.de>
parents: 2162
diff changeset
   100
        (#'Tools::ProjectDefinitionEditor' autoload)
2145
4233bdb1ee28 automatic checkIn
boris
parents: 2109
diff changeset
   101
        UIGalleryView
4233bdb1ee28 automatic checkIn
boris
parents: 2109
diff changeset
   102
        UIHelpTool
4233bdb1ee28 automatic checkIn
boris
parents: 2109
diff changeset
   103
        UILayoutTool
4233bdb1ee28 automatic checkIn
boris
parents: 2109
diff changeset
   104
        UIObjectView
4233bdb1ee28 automatic checkIn
boris
parents: 2109
diff changeset
   105
        UIPainter
4233bdb1ee28 automatic checkIn
boris
parents: 2109
diff changeset
   106
        UISelectionPanel
4233bdb1ee28 automatic checkIn
boris
parents: 2109
diff changeset
   107
        UISpecificationTool
4233bdb1ee28 automatic checkIn
boris
parents: 2109
diff changeset
   108
        #'stx_libtool2'
4233bdb1ee28 automatic checkIn
boris
parents: 2109
diff changeset
   109
        FileSelectionBrowser
4233bdb1ee28 automatic checkIn
boris
parents: 2109
diff changeset
   110
        ResourceSelectionBrowser
4233bdb1ee28 automatic checkIn
boris
parents: 2109
diff changeset
   111
        UIPainterView
2179
e6a9ed8d2471 *** empty log message ***
ca
parents: 2172
diff changeset
   112
        (#'Tools::ViewTreeModel' autoload)
e6a9ed8d2471 *** empty log message ***
ca
parents: 2172
diff changeset
   113
        (#'Tools::ViewTreeApplication' autoload)
e6a9ed8d2471 *** empty log message ***
ca
parents: 2172
diff changeset
   114
        (#'Tools::ViewTreeItem' autoload)
2182
28e8023b2f9f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2179
diff changeset
   115
        (#'Tools::ObjectModuleInformation' autoload)
2292
2e16dc38d3d2 automatic checkIn
Stefan Vogel <sv@exept.de>
parents: 2194
diff changeset
   116
        UIListEditor
2068
c8e0136dc692 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   117
    )
c8e0136dc692 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   118
!
c8e0136dc692 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   119
c8e0136dc692 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   120
extensionMethodNames
c8e0136dc692 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   121
    ^ #(
c8e0136dc692 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   122
    )
c8e0136dc692 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   123
! !
c8e0136dc692 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   124
c8e0136dc692 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   125
!stx_libtool2 class methodsFor:'description - project information'!
c8e0136dc692 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   126
c8e0136dc692 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   127
companyName
c8e0136dc692 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   128
    "Return a companyname which will appear in <lib>.rc"
c8e0136dc692 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   129
c8e0136dc692 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   130
    ^ 'eXept Software AG'
c8e0136dc692 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   131
!
c8e0136dc692 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   132
c8e0136dc692 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   133
description
c8e0136dc692 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   134
    "Return a description string which will appear in nt.def / bc.def"
c8e0136dc692 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   135
c8e0136dc692 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   136
    ^ 'Smalltalk/X Class library'
c8e0136dc692 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   137
!
c8e0136dc692 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   138
c8e0136dc692 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   139
legalCopyright
c8e0136dc692 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   140
    "Return a copyright string which will appear in <lib>.rc"
c8e0136dc692 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   141
2194
70b90ed6e10d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2193
diff changeset
   142
    ^ 'Copyright Claus Gittinger 1988-2007\nCopyright eXept Software AG 1998-2007'
70b90ed6e10d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2193
diff changeset
   143
70b90ed6e10d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2193
diff changeset
   144
    "Modified: / 08-11-2007 / 16:58:56 / cg"
2068
c8e0136dc692 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   145
! !
c8e0136dc692 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   146
c8e0136dc692 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   147
!stx_libtool2 class methodsFor:'documentation'!
c8e0136dc692 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   148
c8e0136dc692 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   149
version
c8e0136dc692 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   150
    ^ '$Header$'
c8e0136dc692 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   151
! !