stx_libtool.st
author Stefan Vogel <sv@exept.de>
Thu, 11 Jan 2007 19:05:31 +0100
changeset 7577 9769c6225ff7
parent 7448 5c811968bae6
child 7641 a0d5a367ce8c
permissions -rw-r--r--
Rename nt.mak to bc.mak
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
7074
6690ccaad741 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7048
diff changeset
     1
"
6690ccaad741 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7048
diff changeset
     2
 COPYRIGHT (c) 2006 by eXept Software AG
6690ccaad741 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7048
diff changeset
     3
              All Rights Reserved
6690ccaad741 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7048
diff changeset
     4
6690ccaad741 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7048
diff changeset
     5
 This software is furnished under a license and may be used
6690ccaad741 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7048
diff changeset
     6
 only in accordance with the terms of that license and with the
6690ccaad741 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7048
diff changeset
     7
 inclusion of the above copyright notice.   This software may not
6690ccaad741 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7048
diff changeset
     8
 be provided or otherwise made available to, or used by, any
6690ccaad741 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7048
diff changeset
     9
 other person.  No title to or ownership of the software is
6690ccaad741 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7048
diff changeset
    10
 hereby transferred.
6690ccaad741 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7048
diff changeset
    11
"
6974
fe0e750f3f6a initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    12
"{ Package: 'stx:libtool' }"
fe0e750f3f6a initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    13
fe0e750f3f6a initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    14
LibraryDefinition subclass:#stx_libtool
fe0e750f3f6a initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    15
	instanceVariableNames:''
fe0e750f3f6a initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    16
	classVariableNames:''
fe0e750f3f6a initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    17
	poolDictionaries:''
fe0e750f3f6a initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    18
	category:'* Projects *'
fe0e750f3f6a initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    19
!
fe0e750f3f6a initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    20
7074
6690ccaad741 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7048
diff changeset
    21
!stx_libtool class methodsFor:'documentation'!
6690ccaad741 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7048
diff changeset
    22
6690ccaad741 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7048
diff changeset
    23
copyright
6690ccaad741 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7048
diff changeset
    24
"
6690ccaad741 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7048
diff changeset
    25
 COPYRIGHT (c) 2006 by eXept Software AG
6690ccaad741 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7048
diff changeset
    26
              All Rights Reserved
6690ccaad741 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7048
diff changeset
    27
6690ccaad741 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7048
diff changeset
    28
 This software is furnished under a license and may be used
6690ccaad741 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7048
diff changeset
    29
 only in accordance with the terms of that license and with the
6690ccaad741 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7048
diff changeset
    30
 inclusion of the above copyright notice.   This software may not
6690ccaad741 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7048
diff changeset
    31
 be provided or otherwise made available to, or used by, any
6690ccaad741 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7048
diff changeset
    32
 other person.  No title to or ownership of the software is
6690ccaad741 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7048
diff changeset
    33
 hereby transferred.
6690ccaad741 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7048
diff changeset
    34
"
6690ccaad741 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7048
diff changeset
    35
!
6690ccaad741 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7048
diff changeset
    36
6690ccaad741 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7048
diff changeset
    37
documentation
6690ccaad741 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7048
diff changeset
    38
"
6690ccaad741 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7048
diff changeset
    39
    Build-Information for creation of the st/x standard library: stx_libtool.
6690ccaad741 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7048
diff changeset
    40
    This library contains developer tools.
6690ccaad741 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7048
diff changeset
    41
"
6690ccaad741 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7048
diff changeset
    42
! !
6974
fe0e750f3f6a initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    43
fe0e750f3f6a initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    44
!stx_libtool class methodsFor:'description'!
fe0e750f3f6a initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    45
7448
5c811968bae6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7306
diff changeset
    46
preRequisites
5c811968bae6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7306
diff changeset
    47
    ^ #(
5c811968bae6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7306
diff changeset
    48
        #'stx:libbasic'
5c811968bae6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7306
diff changeset
    49
        #'stx:libbasic2'
5c811968bae6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7306
diff changeset
    50
        #'stx:libbasic3'
5c811968bae6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7306
diff changeset
    51
        #'stx:libcomp'
5c811968bae6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7306
diff changeset
    52
        #'stx:libhtml'
5c811968bae6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7306
diff changeset
    53
        #'stx:libui'
5c811968bae6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7306
diff changeset
    54
        #'stx:libview'
5c811968bae6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7306
diff changeset
    55
        #'stx:libview2'
5c811968bae6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7306
diff changeset
    56
        #'stx:libwidg'
5c811968bae6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7306
diff changeset
    57
        #'stx:libwidg2'
5c811968bae6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7306
diff changeset
    58
    )
5c811968bae6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7306
diff changeset
    59
5c811968bae6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7306
diff changeset
    60
    "Modified: / 23-10-2006 / 11:08:44 / cg"
5c811968bae6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7306
diff changeset
    61
!
5c811968bae6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7306
diff changeset
    62
7306
e60b4ea96192 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 7162
diff changeset
    63
subProjects
e60b4ea96192 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 7162
diff changeset
    64
    ^ #(
e60b4ea96192 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 7162
diff changeset
    65
)
e60b4ea96192 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 7162
diff changeset
    66
! !
e60b4ea96192 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 7162
diff changeset
    67
e60b4ea96192 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 7162
diff changeset
    68
!stx_libtool class methodsFor:'description - compilation'!
e60b4ea96192 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 7162
diff changeset
    69
7577
9769c6225ff7 Rename nt.mak to bc.mak
Stefan Vogel <sv@exept.de>
parents: 7448
diff changeset
    70
additionalDefinitions_bc_dot_mak
7306
e60b4ea96192 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 7162
diff changeset
    71
    ^ '
7577
9769c6225ff7 Rename nt.mak to bc.mak
Stefan Vogel <sv@exept.de>
parents: 7448
diff changeset
    72
# see stdHeader_bc for LIBTOOL_BASE
7306
e60b4ea96192 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 7162
diff changeset
    73
# LIBTOOL_BASE   =0x64800000
e60b4ea96192 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 7162
diff changeset
    74
LIB_BASE_LD_ARG=-b:$(LIBTOOL_BASE)
e60b4ea96192 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 7162
diff changeset
    75
'
e60b4ea96192 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 7162
diff changeset
    76
! !
e60b4ea96192 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 7162
diff changeset
    77
e60b4ea96192 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 7162
diff changeset
    78
!stx_libtool class methodsFor:'description - contents'!
e60b4ea96192 automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 7162
diff changeset
    79
6974
fe0e750f3f6a initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    80
classNamesAndAttributes
fe0e750f3f6a initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    81
    ^ #(
7448
5c811968bae6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7306
diff changeset
    82
        "<className> or (<className> attributes...) in load order"
5c811968bae6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7306
diff changeset
    83
        AboutBox
5c811968bae6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7306
diff changeset
    84
        AbstractDirectoryBrowser
5c811968bae6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7306
diff changeset
    85
        AbstractFileApplicationNoteBookComponent
5c811968bae6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7306
diff changeset
    86
        AbstractFileBrowser
5c811968bae6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7306
diff changeset
    87
        AbstractLauncherApplication
5c811968bae6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7306
diff changeset
    88
        (AbstractRevisionItem autoload)
5c811968bae6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7306
diff changeset
    89
        AbstractSettingsApplication
5c811968bae6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7306
diff changeset
    90
        (AbstractVersionDiffBrowserItem autoload)
5c811968bae6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7306
diff changeset
    91
        (ApplicationBuilder autoload)
5c811968bae6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7306
diff changeset
    92
        BrowserView
5c811968bae6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7306
diff changeset
    93
        ChangeSetBrowser
5c811968bae6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7306
diff changeset
    94
        ChangesBrowser
5c811968bae6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7306
diff changeset
    95
        (ClassInspectorView autoload)
5c811968bae6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7306
diff changeset
    96
        (ClassItem autoload)
5c811968bae6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7306
diff changeset
    97
        (ClassItemRoot autoload)
5c811968bae6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7306
diff changeset
    98
        (ClassItemRootForRevision autoload)
5c811968bae6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7306
diff changeset
    99
        (ClassNameItem autoload)
5c811968bae6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7306
diff changeset
   100
        (ClassRevisionTree autoload)
5c811968bae6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7306
diff changeset
   101
        (ClassVariablesInspectorView autoload)
5c811968bae6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7306
diff changeset
   102
        CodeGeneratorTool
5c811968bae6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7306
diff changeset
   103
        (ColorInspectorView autoload)
5c811968bae6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7306
diff changeset
   104
        ContextInspectorView
5c811968bae6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7306
diff changeset
   105
        DebugView
5c811968bae6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7306
diff changeset
   106
        DictionaryInspectorView
5c811968bae6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7306
diff changeset
   107
        (Diff3TextView autoload)
5c811968bae6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7306
diff changeset
   108
        DiffTextView
5c811968bae6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7306
diff changeset
   109
        DirectoryContentsBrowser
5c811968bae6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7306
diff changeset
   110
        DirectoryTreeBrowser
5c811968bae6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7306
diff changeset
   111
        (EWorldIconLibrary autoload)
5c811968bae6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7306
diff changeset
   112
        (EventMonitor autoload)
5c811968bae6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7306
diff changeset
   113
        (ExpandableRevisionItem autoload)
5c811968bae6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7306
diff changeset
   114
        FileApplicationNoteBook
5c811968bae6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7306
diff changeset
   115
        FileBrowser
5c811968bae6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7306
diff changeset
   116
        FileBrowserV2
5c811968bae6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7306
diff changeset
   117
        FileBrowserV2PanelView
5c811968bae6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7306
diff changeset
   118
        (FileBrowserV2SettingsAppl autoload)
5c811968bae6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7306
diff changeset
   119
        (FileBrowserV2SettingsDialog autoload)
5c811968bae6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7306
diff changeset
   120
        (FileBrowserV2Tests autoload)
5c811968bae6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7306
diff changeset
   121
        FileBrowserV2UISpecifications
5c811968bae6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7306
diff changeset
   122
        FileDialog
5c811968bae6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7306
diff changeset
   123
        (FileDialogV2 autoload)
5c811968bae6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7306
diff changeset
   124
        FileOperation
5c811968bae6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7306
diff changeset
   125
        FilenameEditFieldV2
5c811968bae6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7306
diff changeset
   126
        FindFileApplication
5c811968bae6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7306
diff changeset
   127
        GenericToolbarIconLibrary
5c811968bae6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7306
diff changeset
   128
        (HierarchicalClassRevisionList autoload)
5c811968bae6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7306
diff changeset
   129
        (HierarchicalVersionDiffBrowser autoload)
5c811968bae6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7306
diff changeset
   130
        (ImageInspectorView autoload)
5c811968bae6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7306
diff changeset
   131
        InspectorView
5c811968bae6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7306
diff changeset
   132
        (Launcher autoload)
5c811968bae6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7306
diff changeset
   133
        (LibraryBuilder autoload)
5c811968bae6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7306
diff changeset
   134
        (MemoryMonitor autoload)
5c811968bae6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7306
diff changeset
   135
        (MemoryMonitorView autoload)
5c811968bae6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7306
diff changeset
   136
        (MemoryUsageView autoload)
5c811968bae6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7306
diff changeset
   137
        MultiViewToolApplication
5c811968bae6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7306
diff changeset
   138
        (NewChangesBrowser autoload)
5c811968bae6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7306
diff changeset
   139
        NewLauncher
5c811968bae6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7306
diff changeset
   140
        (OldLauncher autoload)
5c811968bae6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7306
diff changeset
   141
        OrderedCollectionInspectorView
5c811968bae6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7306
diff changeset
   142
        (ProcessMonitor autoload)
5c811968bae6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7306
diff changeset
   143
        ProcessMonitorV2
5c811968bae6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7306
diff changeset
   144
        (ProjectView autoload)
5c811968bae6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7306
diff changeset
   145
        (RCSConflictEditTextView autoload)
5c811968bae6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7306
diff changeset
   146
        (SemaphoreMonitor autoload)
5c811968bae6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7306
diff changeset
   147
        SetInspectorView
5c811968bae6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7306
diff changeset
   148
        SettingsDialog
5c811968bae6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7306
diff changeset
   149
        (SmalltalkInspectorView autoload)
5c811968bae6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7306
diff changeset
   150
        (SourceRevisionItem autoload)
5c811968bae6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7306
diff changeset
   151
        SystemBrowser
5c811968bae6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7306
diff changeset
   152
        (SystemStatusMonitor autoload)
5c811968bae6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7306
diff changeset
   153
        (TerminalApplication autoload)
5c811968bae6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7306
diff changeset
   154
        #'Tools::BrowserList'
5c811968bae6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7306
diff changeset
   155
        #'Tools::CheckinInfoDialog'
5c811968bae6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7306
diff changeset
   156
        #'Tools::ClassCategoryList'
5c811968bae6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7306
diff changeset
   157
        #'Tools::ClassChecker'
5c811968bae6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7306
diff changeset
   158
        #'Tools::ClassGeneratorList'
5c811968bae6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7306
diff changeset
   159
        #'Tools::ClassList'
5c811968bae6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7306
diff changeset
   160
        #'Tools::FullMethodCategoryList'
5c811968bae6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7306
diff changeset
   161
        #'Tools::HierarchicalClassCategoryList'
5c811968bae6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7306
diff changeset
   162
        #'Tools::HierarchicalClassList'
5c811968bae6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7306
diff changeset
   163
        #'Tools::HierarchicalProjectList'
5c811968bae6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7306
diff changeset
   164
        #'Tools::ImplementingClassList'
5c811968bae6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7306
diff changeset
   165
        #'Tools::ImplementingMethodList'
5c811968bae6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7306
diff changeset
   166
        #'Tools::InheritanceClassList'
5c811968bae6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7306
diff changeset
   167
        #'Tools::MethodCategoryCache'
5c811968bae6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7306
diff changeset
   168
        #'Tools::MethodCategoryList'
5c811968bae6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7306
diff changeset
   169
        #'Tools::MethodList'
5c811968bae6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7306
diff changeset
   170
        #'Tools::NamespaceList'
5c811968bae6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7306
diff changeset
   171
        #'Tools::NavigationState'
5c811968bae6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7306
diff changeset
   172
        #'Tools::NavigatorCanvas'
5c811968bae6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7306
diff changeset
   173
        #'Tools::NavigatorModel'
5c811968bae6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7306
diff changeset
   174
        #'Tools::NewSystemBrowser'
5c811968bae6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7306
diff changeset
   175
        #'Tools::OrganizerCanvas'
5c811968bae6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7306
diff changeset
   176
        #'Tools::ProjectList'
5c811968bae6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7306
diff changeset
   177
        #'Tools::SearchDialog'
5c811968bae6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7306
diff changeset
   178
        #'Tools::SpecialCodeView'
5c811968bae6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7306
diff changeset
   179
        #'Tools::VariableList'
5c811968bae6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7306
diff changeset
   180
        VersionDiffBrowser
5c811968bae6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7306
diff changeset
   181
        (VersionRevisionItem autoload)
5c811968bae6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7306
diff changeset
   182
        ViewWithAcceptAndCancelBar
5c811968bae6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7306
diff changeset
   183
        WorkspaceApplication
5c811968bae6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7306
diff changeset
   184
        XPToolbarIconLibrary
5c811968bae6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7306
diff changeset
   185
        #'stx_libtool'
5c811968bae6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7306
diff changeset
   186
        (#'Tools::ToDoList' autoload)
5c811968bae6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7306
diff changeset
   187
        (#'Tools::ToDoListBrowser' autoload)
5c811968bae6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7306
diff changeset
   188
        (#'Tools::ToDoListEntry' autoload)
5c811968bae6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7306
diff changeset
   189
        (#'Tools::CompilerWarningToDoListEntry' autoload)
6974
fe0e750f3f6a initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   190
    )
7448
5c811968bae6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7306
diff changeset
   191
5c811968bae6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7306
diff changeset
   192
    "Modified: / 23-10-2006 / 11:10:03 / cg"
6974
fe0e750f3f6a initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   193
!
fe0e750f3f6a initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   194
fe0e750f3f6a initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   195
extensionMethodNames
fe0e750f3f6a initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   196
    ^ #(
7448
5c811968bae6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7306
diff changeset
   197
        ByteArray inspectorExtraAttributes
5c811968bae6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7306
diff changeset
   198
        Color inspectorClass
5c811968bae6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7306
diff changeset
   199
        Dictionary inspectorClass
5c811968bae6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7306
diff changeset
   200
        Form inspectorClass
5c811968bae6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7306
diff changeset
   201
        Image inspectorClass
5c811968bae6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7306
diff changeset
   202
        Integer inspectorExtraAttributes
5c811968bae6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7306
diff changeset
   203
        Method inspectorExtraAttributes
5c811968bae6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7306
diff changeset
   204
        Method printStringForBrowserWithSelector:inClass:
5c811968bae6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7306
diff changeset
   205
        Method selectorPrintStringInBrowserFor:
5c811968bae6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7306
diff changeset
   206
        MethodDictionary inspectorClass
5c811968bae6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7306
diff changeset
   207
        OrderedCollection inspectorClass
5c811968bae6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7306
diff changeset
   208
        RunArray inspectorClass
5c811968bae6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7306
diff changeset
   209
        Set inspectorClass
5c811968bae6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7306
diff changeset
   210
        Text inspectorExtraAttributes
5c811968bae6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7306
diff changeset
   211
        #'NameSpace class' inspectorClass
5c811968bae6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7306
diff changeset
   212
        #'Smalltalk class' inspectorClass
5c811968bae6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7306
diff changeset
   213
        Character inspectorExtraAttributes
5c811968bae6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7306
diff changeset
   214
        Collection inspectorExtraAttributes
5c811968bae6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7306
diff changeset
   215
        Object inspectorExtraAttributes
5c811968bae6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7306
diff changeset
   216
        Object todo:
6974
fe0e750f3f6a initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   217
    )
7027
c7548c53b5be automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 6988
diff changeset
   218
! !
c7548c53b5be automatic checkIn
Claus Gittinger <cg@exept.de>
parents: 6988
diff changeset
   219
6974
fe0e750f3f6a initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   220
!stx_libtool class methodsFor:'description - project information'!
fe0e750f3f6a initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   221
fe0e750f3f6a initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   222
companyName
fe0e750f3f6a initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   223
    "Return a companyname which will appear in <lib>.rc"
fe0e750f3f6a initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   224
fe0e750f3f6a initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   225
    ^ 'eXept Software AG'
fe0e750f3f6a initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   226
!
fe0e750f3f6a initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   227
fe0e750f3f6a initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   228
description
fe0e750f3f6a initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   229
    "Return a description string which will appear in nt.def / bc.def"
fe0e750f3f6a initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   230
fe0e750f3f6a initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   231
    ^ 'Smalltalk/X Tools'
fe0e750f3f6a initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   232
!
fe0e750f3f6a initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   233
fe0e750f3f6a initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   234
legalCopyright
fe0e750f3f6a initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   235
    "Return a copyright string which will appear in <lib>.rc"
fe0e750f3f6a initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   236
fe0e750f3f6a initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   237
    ^ 'Copyright Claus Gittinger 1988-2006\nCopyright eXept Software AG 1998-2006'
fe0e750f3f6a initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   238
!
fe0e750f3f6a initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   239
fe0e750f3f6a initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   240
productName
fe0e750f3f6a initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   241
    "Return a product name which will appear in <lib>.rc"
fe0e750f3f6a initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   242
fe0e750f3f6a initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   243
    ^ 'Smalltalk/X'
fe0e750f3f6a initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   244
! !
fe0e750f3f6a initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   245
fe0e750f3f6a initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   246
!stx_libtool class methodsFor:'documentation'!
fe0e750f3f6a initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   247
fe0e750f3f6a initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   248
version
7577
9769c6225ff7 Rename nt.mak to bc.mak
Stefan Vogel <sv@exept.de>
parents: 7448
diff changeset
   249
    ^ '$Header: /cvs/stx/stx/libtool/stx_libtool.st,v 1.16 2007-01-11 18:05:31 stefan Exp $'
6974
fe0e750f3f6a initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   250
! !