Make.proto
author Claus Gittinger <cg@exept.de>
Wed, 11 Feb 2015 18:47:35 +0100
changeset 1368 d2cade96cabd
parent 1360 a0fa8b75d11f
child 1391 8fafa49d0bf1
permissions -rw-r--r--
*** empty log message ***
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
796
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
     1
#
6
e62874de13a6 *** empty log message ***
claus
parents: 3
diff changeset
     2
# $Header$
0
0cb137a77319 Initial revision
claus
parents:
diff changeset
     3
#
1283
4aeeb109eefa *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1282
diff changeset
     4
# ATTENTION: this Make.proto is still maintained manually.
4aeeb109eefa *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1282
diff changeset
     5
# i.e. not generated from the ApplicationDefinition
4aeeb109eefa *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1282
diff changeset
     6
#
796
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
     7
# -------------- no need to change anything below ----------
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
     8
#
1288
8c1a158d74d1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1285
diff changeset
     9
# This makefile generatfes the smalltalk executable itself;
796
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
    10
# it can be invoked as:
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
    11
#
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
    12
#    make
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
    13
#       generates a standard smalltalk, and sets up symbolic links
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
    14
#       for local execution.
398
bbb3ba0bb33d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 393
diff changeset
    15
#
796
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
    16
#    make smalltalk
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
    17
#       generates a standard smalltalk executable only
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
    18
#
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
    19
#    make smalltalk ADDITIONAL_OBJS=<list of object files> \
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
    20
#                   ADDITIONAL_CLASSES=<list of class names>
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
    21
#       generates a customized executable, containing additional
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
    22
#       class (list of classes) which are to be found in the object
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
    23
#       files (list of object files).
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
    24
#       Example:
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
    25
#           make smalltalk ADDITIONAL_OBJS=Foo.o ADDITIONAL_CLASSES=Foo
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
    26
#
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
    27
# No longer maintained (make could fail):
556
c2f0be91462a all library definitions are now here - no need for a PACK file
Claus Gittinger <cg@exept.de>
parents: 555
diff changeset
    28
#
796
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
    29
#    make stx_static (ELF based systems only):
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
    30
#       generates a smalltalk with statically linked
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
    31
#       class libs. (still uses dynamic unix libraries)
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
    32
#
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
    33
#    make stx_fullstatic (ELF based systems only):
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
    34
#       generates a fully statically linked smalltalk
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
    35
#       (even system libs are linked in)
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
    36
#
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
    37
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
    38
TOP=../..
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
    39
SUBDIRS=
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
    40
SUPPRESS_LOCAL_ABBREVS="yes"
6
e62874de13a6 *** empty log message ***
claus
parents: 3
diff changeset
    41
#
796
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
    42
# these are installed when installing their
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
    43
# package dir ...
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
    44
#
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
    45
SUPPRESS_INSTALL_BITMAPS="yes"
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
    46
SUPPRESS_INSTALL_RESOURCES="yes"
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
    47
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
    48
INSTALLBIN_DIR=$(INSTALLBASE)/bin
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
    49
INSTALLLIB_DIR=$(INSTALLBASE)/lib
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
    50
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
    51
RCSSOURCES=*.rc patches Make.proto
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
    52
LINKSOURCES=*.rc patches Make.proto
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
    53
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
    54
DELIVERBINARIES=stx
207
94ef15d42899 example mySmalltalk added
Claus Gittinger <cg@exept.de>
parents: 206
diff changeset
    55
94ef15d42899 example mySmalltalk added
Claus Gittinger <cg@exept.de>
parents: 206
diff changeset
    56
#
796
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
    57
# other definitions to use for things compiled here
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
    58
#
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
    59
LOCALDEFS=-DDEBUG
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
    60
#ST_LDFLAG=
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
    61
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
    62
# st files found here wont go into the global abbrev list
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
    63
SUPPRESS_LOCAL_ABBREVS=1
569
69e97c7b184d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 568
diff changeset
    64
796
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
    65
#
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
    66
# this defines where the show starts
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
    67
#
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
    68
STARTUP_CLASS="Smalltalk"
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
    69
STARTUP_SELECTOR="start"
788
51c7d65adf36 automatically generated by browser
Claus Gittinger <cg@exept.de>
parents: 717
diff changeset
    70
796
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
    71
#
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
    72
# including your own private lib in the make process and executable:
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
    73
#
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
    74
# for example, if you have a libprivate directory,
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
    75
# where libprivate.obj is built, and that one should be included,
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
    76
# add lines as below to your configuration/.../defines file:
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
    77
#    PRIVATEOBJ=$(TOP)/libprivate/libprivate.obj
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
    78
#    PRIVATE_SO=$(TOP)/libprivate/libprivate.so
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
    79
#    PRIVATELIBS=libprivate
788
51c7d65adf36 automatically generated by browser
Claus Gittinger <cg@exept.de>
parents: 717
diff changeset
    80
796
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
    81
# This defines which library packages are linked in.
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
    82
# See COMMON/defines for what those XXX_LIB etc. are
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
    83
#
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
    84
# MINI_LIB        = libbasic, libcomp $(PRIVATELIBS)
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
    85
# FUNDAMENTAL_LIB = above PLUS libview, libwidg
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
    86
# DEVELOP_LIB     = above PLUS libtool refactoring
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
    87
# STANDARD_LIB    = above PLUS libwidg2, libdbase
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
    88
# EXTENDED_LIB    = above PLUS libwidg3
788
51c7d65adf36 automatically generated by browser
Claus Gittinger <cg@exept.de>
parents: 717
diff changeset
    89
796
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
    90
CLASSLIBDIRS    =   $(STANDARD_DIR) $(PRIVATE_CLASSLIBDIRS) $(ARCH_CLASSLIBDIRS)
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
    91
LIBOBJS         =   $(STANDARD_LIB) $(PRIVATE_OBJS)
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
    92
LINK_LIBOBJS    =   $(LINK_STANDARD_LIB) $(PRIVATE_OBJS)
1285
09024870e513 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1284
diff changeset
    93
STATIC_LIBOBJS  =   $(STATIC_STANDARD_LIB) $(PRIVATE_OBJS)
1284
78f7a1cdfeb1 oops - checked in mac version by accident
Claus Gittinger <cg@exept.de>
parents: 1283
diff changeset
    94
LIBLIST         =   $(STANDARD_LIST) $(PRIVATE_LIBS)
8
d82829c0d867 *** empty log message ***
claus
parents: 7
diff changeset
    95
1078
e55c0b1c7670 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 979
diff changeset
    96
# WORKSTAT1       =   XWorkstation
e55c0b1c7670 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 979
diff changeset
    97
# WORKSTAT2       =   GLXWorkstation
979
a0be1710134d Bck to Revision 1.100: XWOrkstation and GLXWorkstation went out of libview again.
Stefan Vogel <sv@exept.de>
parents: 796
diff changeset
    98
1356
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
    99
# now in libview
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   100
# EXTRA_UI_CLASSES=   $(WORKSTAT1) $(WORKSTAT2)
796
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   101
1356
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   102
#EXTRA_UI_OBJ=\
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   103
#        $(OPTIONAL_XWORKSTATION_OBJ)   \
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   104
#        $(OPTIONAL_GLXWORKSTATION_OBJ)
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   105
#
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   106
#STATIC_EXTRA_UI_OBJ=\
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   107
#        $(STATIC_OPTIONAL_XWORKSTATION_OBJ) \
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   108
#        $(STATIC_OPTIONAL_GLXWORKSTATION_OBJ)
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   109
#
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   110
#EXTRA_LINK_UI_OBJ=\
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   111
#        $(OPTIONAL_LINK_XWORKSTATION_OBJ)   \
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   112
#        $(OPTIONAL_LINK_GLXWORKSTATION_OBJ)
796
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   113
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   114
OPTIONAL_LIBGL_TARGET   =   $(LIB_GL_TARGET)
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   115
OPTIONAL_GL_LIB         =   $(LIB_GL)
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   116
OPTIONAL_LINK_GL_LIB    =   $(LINK_LIB_GL)
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   117
1282
8c748cc60b6b static link fixes
Claus Gittinger <cg@exept.de>
parents: 1108
diff changeset
   118
796
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   119
# ---------------------- end additional stuff --------------------
178
7ab96c8246bd added stx_static & stx_fullstatic support on shared lib systems (Linux-ELF)
Claus Gittinger <cg@exept.de>
parents: 176
diff changeset
   120
8
d82829c0d867 *** empty log message ***
claus
parents: 7
diff changeset
   121
796
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   122
#
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   123
# default target: create the TARGET (usually smalltalk)
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   124
#
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   125
all::   $(TARGET)$(TARGET_RULE_EXTENSION) symlinks
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   126
	@-if [ "$(ALSO_MAKE_STATIC_TARGET)" = "1" ]; then \
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   127
	    mv stx stx_dynamic; \
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   128
	    $(MAKE) stx_fullstatic; \
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   129
	fi
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   130
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   131
#
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   132
# same, force recreation of link-directories
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   133
#
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   134
allNew: $(TARGET)$(TARGET_RULE_EXTENSION) misc
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   135
	@-if [ "$(ALSO_MAKE_STATIC_TARGET)" = "1" ]; then \
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   136
	    mv stx stx_dynamic; \
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   137
	    $(MAKE) stx_fullstatic; \
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   138
	fi
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   139
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   140
#
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   141
# create symbolic links to sources, resources etc.
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   142
# normally (on an end-user system) these should go into usr/local/lib/smalltalk
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   143
#
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   144
symlinks:   includeLink misc
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   145
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   146
#
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   147
# the standard smalltalk executable:
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   148
# basic classes + view & widgets + tools + persistency
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   149
#
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   150
smalltalk:: $(TARGET)$(TARGET_RULE_EXTENSION)
130
ad3285492ec5 aix-now supports shared libs
Claus Gittinger <cg@exept.de>
parents: 124
diff changeset
   151
796
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   152
#
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   153
# a specialized mySmalltalk with additional class(es) and additional
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   154
# C-library builtIn
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   155
#
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   156
MY_ADDITIONAL_OBJECTS=Foo.$(O)
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   157
MY_ADDITIONAL_CLASSES=Foo
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   158
MY_ADDITIONAL_LIBS=$(TOP)/../myClasses/libFoo.a
130
ad3285492ec5 aix-now supports shared libs
Claus Gittinger <cg@exept.de>
parents: 124
diff changeset
   159
796
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   160
mySmalltalk: $(MY_ADDITIONAL_OBJECTS)
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   161
	@echo "making special smalltalk ..."
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   162
	@$(MAKE) linkTarget \
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   163
		LIBOBJS="$(LIBOBJS) $(EXTRA_UI_OBJ)" \
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   164
		LINK_OBJS="$(LINK_OBJS)" \
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   165
		LINK_LIBOBJS="$(LINK_LIBOBJS) $(EXTRA_LINK_UI_OBJ)" \
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   166
		LINK_LIBRUN="$(LINK_LIBRUN)" \
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   167
		LIBRUN="$(LIBRUN)" \
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   168
		ADDITIONAL_OBJS=$(MY_ADDITIONAL_OBJECTS) \
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   169
		ADDITIONAL_CLASSES=$(MY_ADDITIONAL_CLASSES) \
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   170
		ADDITIONAL_LIBS=$(MY_ADDITIONAL_LIBS) \
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   171
		LIBLIST="$(LIBLIST)"
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   172
	@$(MAKE) removeLinkLibs
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   173
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   174
#
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   175
# by default, the TARGET rule calls for one of the
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   176
# rules below. Which one is controlled by the
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   177
# architecture-specific definition file.
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   178
#
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   179
$(TARGET)_shared:
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   180
	@echo "making shared library linked smalltalk ..."
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   181
	echo EXTRA_LINK_UI_OBJ = $(EXTRA_LINK_UI_OBJ)
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   182
	$(MAKE) linkTarget \
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   183
		LIBOBJS="$(LIBOBJS) $(EXTRA_UI_OBJ)" \
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   184
		LINK_LIBOBJS="$(LINK_LIBOBJS) $(EXTRA_LINK_UI_OBJ)" \
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   185
		LINK_LIBRUN=$(LINK_LIBRUN) \
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   186
		LIBRUN=$(LIBRUN) \
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   187
		ADDITIONAL_OBJS=$(ADDITIONAL_OBJS) \
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   188
		ADDITIONAL_CLASSES=$(ADDITIONAL_CLASSES) \
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   189
		LIBLIST="$(LIBLIST) $(EXTRA_UI_CLASSES)"
132
ec7eba4010f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 130
diff changeset
   190
796
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   191
$(TARGET)_static: $(STATIC_LIBRUN)
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   192
	@echo "making statically linked smalltalk ..."
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   193
	@$(MAKE) linkTarget \
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   194
		LIBOBJS="" \
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   195
		LINK_OBJS="$(STATIC_OBJS) $(STATIC_EXTRA_UI_OBJ)" \
1282
8c748cc60b6b static link fixes
Claus Gittinger <cg@exept.de>
parents: 1108
diff changeset
   196
		LINK_LIBOBJS="$(STATIC_LIBOBJS) $(STATIC_EXTRA_UI_OBJ)" \
796
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   197
		LINK_LIBRUN="$(STATIC_LIBRUN)" \
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   198
		LIBRUN="$(STATIC_LIBRUN)" \
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   199
		ADDITIONAL_OBJS=$(STATIC_ADDITIONAL_OBJS) \
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   200
		ADDITIONAL_CLASSES=$(STATIC_ADDITIONAL_CLASSES) \
1282
8c748cc60b6b static link fixes
Claus Gittinger <cg@exept.de>
parents: 1108
diff changeset
   201
		EXTRA_LIBS="$(STATIC_EXTRA_LIBS)" \
796
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   202
		LIBLIST="$(LIBLIST) $(EXTRA_UI_CLASSES)"
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   203
	@$(MAKE) removeLinkLibs
25
claus
parents: 24
diff changeset
   204
796
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   205
$(TARGET)_fullstatic: $(STATIC_LIBRUN)
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   206
	if [ -f $(LIBRUNDIR)/librun.a ]; then \
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   207
	    echo "librun.a already made."; \
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   208
	else \
1108
57820a0912e3 Use && to chain commands
Stefan Vogel <sv@exept.de>
parents: 1078
diff changeset
   209
	    cd $(LIBRUNDIR) && $(MAKE) librun.a; \
796
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   210
	fi
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   211
	@echo "making full statically linked smalltalk ..."
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   212
	@$(MAKE) linkTarget \
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   213
		LIBOBJS="" \
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   214
		LINK_OBJS="$(STATIC_OBJS) $(STATIC_EXTRA_UI_OBJ)" \
1282
8c748cc60b6b static link fixes
Claus Gittinger <cg@exept.de>
parents: 1108
diff changeset
   215
		LINK_LIBOBJS="$(STATIC_LIBOBJS) $(STATIC_EXTRA_UI_OBJ)" \
796
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   216
		LINK_LIBRUN="$(STATIC_LIBRUN)" \
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   217
		LIBRUN="$(STATIC_LIBRUN)" \
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   218
		ADDITIONAL_OBJS=$(STATIC_ADDITIONAL_OBJS) \
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   219
		ADDITIONAL_CLASSES=$(STATIC_ADDITIONAL_CLASSES) \
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   220
		LIBLIST="$(LIBLIST) $(EXTRA_UI_CLASSES)" \
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   221
		MATHLIB="$(STATIC_MATHLIB)" \
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   222
		EXTRA_LIBS="$(STATIC_EXTRA_LIBS)" \
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   223
		SYSLIBS="$(STATIC_SYSLIBS)"
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   224
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   225
	@$(MAKE) removeLinkLibs
178
7ab96c8246bd added stx_static & stx_fullstatic support on shared lib systems (Linux-ELF)
Claus Gittinger <cg@exept.de>
parents: 176
diff changeset
   226
796
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   227
AIX_SHARED_LIBOBJS= \
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   228
	$(LIBBASICDIR)/libstx_libbasic.so \
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   229
	$(LIBCOMPDIR)/libstx_libcomp.so \
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   230
	$(LIBVIEWDIR)/libstx_libview.so \
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   231
	$(LIBVIEW2DIR)/libstx_libview2.so \
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   232
	$(LIBWIDGDIR)/libstx_libwidg.so \
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   233
	$(LIBTOOLDIR)/libstx_libtool.so \
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   234
	$(LIBBASIC2DIR)/libstx_libbasic2.so \
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   235
	$(LIBBASIC3DIR)/libstx_libbasic3.so \
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   236
	$(LIBHTMLDIR)/libstx_libhtml.so \
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   237
	$(LIBWIDG2DIR)/libstx_libwidg2.so \
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   238
	$(PERSDIR)/libstx_libdbase.so
16
db5d473df9f0 *** empty log message ***
claus
parents: 15
diff changeset
   239
796
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   240
aix:
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   241
	    @echo "making shared library linked smalltalk for aix ..."
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   242
	    @$(MAKE) linkTarget \
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   243
		LIBOBJS="$(AIX_SHARED_LIBOBJS)" \
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   244
		EXTRA_OBJ="$(EXTRA_OBJ)" \
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   245
		EXTRA_LINK_OBJ="$(EXTRA_LINK_OBJ)" \
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   246
		LIBLIST="$(LIBLIST)" \
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   247
		LINK_LIBRUN=$(LINK_LIBDIR)librun.so \
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   248
		LIBRUN=$(LIBRUNDIR)/librun.so
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   249
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   250
aix_librun_only:
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   251
	    @echo "making partial shared library linked smalltalk ..."
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   252
	    @$(MAKE) linkTarget LIBRUN=$(LIBRUNDIR)/librun.so
362
87f7b4670ae8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 334
diff changeset
   253
796
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   254
forceStatic:
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   255
	    (cd $(LIBBASICDIR) ; $(MAKE) libbasicInit.o)
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   256
	    -rm -f $(LIBBASICDIR)/libbasic.o
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   257
	    $(MAKE) linkTarget LIBRUN="$(LIBRUNDIR)/*.o" LIBBASIC="$(LIBBASICDIR)/*.o"
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   258
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   259
$(LIBVIEWDIR)/XWorkstation.o:
1108
57820a0912e3 Use && to chain commands
Stefan Vogel <sv@exept.de>
parents: 1078
diff changeset
   260
	cd $(LIBVIEWDIR) && $(MAKE) XWorkstation.o
796
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   261
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   262
$(LIBVIEWDIR)/XWorkstation.so:
1108
57820a0912e3 Use && to chain commands
Stefan Vogel <sv@exept.de>
parents: 1078
diff changeset
   263
	cd $(LIBVIEWDIR) && $(MAKE) XWorkstation.so
796
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   264
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   265
$(LIBVIEWDIR)/GLXWorkstation.o:
1108
57820a0912e3 Use && to chain commands
Stefan Vogel <sv@exept.de>
parents: 1078
diff changeset
   266
	cd $(LIBVIEWDIR) && $(MAKE) GLXWorkstation.o
796
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   267
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   268
$(LIBVIEWDIR)/GLXWorkstation.so:
1108
57820a0912e3 Use && to chain commands
Stefan Vogel <sv@exept.de>
parents: 1078
diff changeset
   269
	cd $(LIBVIEWDIR) && $(MAKE) GLXWorkstation.so
788
51c7d65adf36 automatically generated by browser
Claus Gittinger <cg@exept.de>
parents: 717
diff changeset
   270
51c7d65adf36 automatically generated by browser
Claus Gittinger <cg@exept.de>
parents: 717
diff changeset
   271
796
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   272
#
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   273
# dont want these ttt-tempfile abbrevs to be included ...
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   274
#
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   275
abbrev.stc::
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   276
	    @-rm -f ttt*.*
788
51c7d65adf36 automatically generated by browser
Claus Gittinger <cg@exept.de>
parents: 717
diff changeset
   277
796
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   278
#
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   279
# currently, abbrev,stc must be made cross
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   280
#
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   281
ntAbbrev.stc: include/abbrev.stc
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   282
	cp include/abbrev.stc ntAbbrev.stc
788
51c7d65adf36 automatically generated by browser
Claus Gittinger <cg@exept.de>
parents: 717
diff changeset
   283
796
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   284
#
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   285
# dont want local abbrevs to be included ...
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   286
#
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   287
collectAbbrev::
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   288
	    @-rm -f abbrev.stc
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   289
	    @-if [ "$(SUPPRESS_ABBREVS)" = "" ]; then \
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   290
	      if [ -d include ]; then \
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   291
		if [ ! -f include/abbrev.stc ]; then \
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   292
		    (cd include; $(LNS) ../$(INCLUDE)/abbrev.stc . );   \
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   293
		fi; \
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   294
	      fi;   \
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   295
	    fi
788
51c7d65adf36 automatically generated by browser
Claus Gittinger <cg@exept.de>
parents: 717
diff changeset
   296
796
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   297
collectAutoload::
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   298
	    @-rm -f autoloadList.stc
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   299
	    @-if [ -d include ]; then \
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   300
		if [ ! -f include/autoloadList.stc ]; then \
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   301
		    (cd include; $(LNS) ../$(INCLUDE)/autoloadList.stc . ); \
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   302
		fi;                                                             \
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   303
	    fi
15
6cb30063ea41 *** empty log message ***
claus
parents: 13
diff changeset
   304
796
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   305
classes::
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   306
	    test -d classes || mkdir classes
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   307
	    -for i in source/*.st; do \
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   308
		stcomp -i stcomp.img $$i; \
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   309
	    done
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   310
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   311
include:    includeLink
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   312
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   313
misc:       examples
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   314
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   315
examples:
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   316
	    test -d examples || mkdir examples examples/3D
1108
57820a0912e3 Use && to chain commands
Stefan Vogel <sv@exept.de>
parents: 1078
diff changeset
   317
	    -cd examples/3D && $(LNS) ../../$(TOP)/clients/GLdemos/*.data . 2>/dev/null
8
d82829c0d867 *** empty log message ***
claus
parents: 7
diff changeset
   318
796
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   319
#
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   320
# clean out intermediate chunk
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   321
#
0
0cb137a77319 Initial revision
claus
parents:
diff changeset
   322
cleanjunk::
796
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   323
	    @-rm -f a.out SymbolTable ttt main.c
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   324
	    @-rm -f classList.c fclassList.c nxclassList.c basicclassList.c
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   325
	    @-rm -f betaclassList.c miniList.c tinyList.c
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   326
	    @-rm -f modulList.stc modulList.c modulList.o
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   327
	    @-rm -f pers* pers2 data data2 data.boss tetris.scores
0
0cb137a77319 Initial revision
claus
parents:
diff changeset
   328
796
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   329
cleanlinks:
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   330
	    @-rm -rf source bitmaps binaries resources examples include
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   331
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   332
#
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   333
# clean out all that is not needed to run smalltalk
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   334
#
0
0cb137a77319 Initial revision
claus
parents:
diff changeset
   335
clean::
796
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   336
	    @-rm -f a.out SymbolTable ttt main.c
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   337
	    @-rm -f modulList.stc modulList.c modulList.o
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   338
	    @-rm -f classList.stc classList.c classList.o
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   339
	    @-rm -f fclassList.stc fclassList.c
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   340
	    @-rm -f nxclassList.stc nxclassList.c
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   341
	    @-rm -f basicclassList.stc basicclassList.c
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   342
	    @-rm -f betaclassList.stc betaclassList.c
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   343
	    @-rm -f miniList.stc miniList.c
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   344
	    @-rm -f tinyList.stc tinyList.c
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   345
	    @-rm -f pers pers2 data data2 data.boss tetris.scores
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   346
	    @-rm -f st.img st2.img st.img.sav errorOutput
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   347
	    @-rm -f .stx*.mem
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   348
	    @-rm -rf modules stxtmp*
788
51c7d65adf36 automatically generated by browser
Claus Gittinger <cg@exept.de>
parents: 717
diff changeset
   349
796
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   350
#
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   351
# clean out all that can be regenerated
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   352
#
788
51c7d65adf36 automatically generated by browser
Claus Gittinger <cg@exept.de>
parents: 717
diff changeset
   353
clobber::
796
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   354
	    @$(MAKE) removeLinkLibs
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   355
	    @-rm -f modulList.stc modulList.c modulList.o
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   356
	    @-rm -rf resources source bitmaps include examples lib
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   357
	    @-rm -f stx st.img st.img.sav st.sav
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   358
	    @-rm -f main.o
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   359
	    @-rm -rf modules
1368
d2cade96cabd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1360
diff changeset
   360
	    @-rm -rf package
796
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   361
	    @-rm -rf stxtmp_*
0
0cb137a77319 Initial revision
claus
parents:
diff changeset
   362
1312
6b35651ab77e Change dependency for main.o from makefile to Make.proto
Stefan Vogel <sv@exept.de>
parents: 1288
diff changeset
   363
main.o::    $(INCLUDE)/stc.h $(INCLUDE)/stcIntern.h Make.proto
0
0cb137a77319 Initial revision
claus
parents:
diff changeset
   364
796
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   365
installProgsIf:: $(INSTALLBIN_DIR)
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   366
	@-echo "installing smalltalk..."
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   367
	$(INSTALL_SCRIPT_CMD) smalltalk $(INSTALLBIN_DIR)
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   368
	@-echo "installing stx..."
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   369
	$(INSTALL_BIN_CMD) stx $(INSTALLBIN_DIR)
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   370
	-strip $(INSTALLBIN_DIR)/stx
383
3dfae183631c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 362
diff changeset
   371
796
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   372
installAux:: installRCScripts
383
3dfae183631c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 362
diff changeset
   373
796
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   374
installRCScripts::
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   375
	@-echo "installing rc scripts..."
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   376
	$(INSTALL_AUX_CMD) *.rc $(INSTALLLIB_DIR)
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   377
	$(INSTALL_AUX_CMD) *.xpm $(INSTALLLIB_DIR)
1351
3ef333479676 added rules to generate a dmg (MAC)
Claus Gittinger <cg@exept.de>
parents: 1312
diff changeset
   378
1356
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   379
###################################################################
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   380
#
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   381
# packaging for deployment
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   382
# DEPLOY_PACKAGE is (currently) one of "dmg", "tgz"
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   383
# and coming from the arch-specific configuration file
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   384
#
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   385
deploy:
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   386
	$(MAKE) deploy_$(DEPLOY_PACKAGE)
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   387
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   388
################### begin mac specific #################
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   389
# creates /tmp/stx.dmg
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   390
#
1351
3ef333479676 added rules to generate a dmg (MAC)
Claus Gittinger <cg@exept.de>
parents: 1312
diff changeset
   391
DMG_TMP=/tmp/stx_dmg
3ef333479676 added rules to generate a dmg (MAC)
Claus Gittinger <cg@exept.de>
parents: 1312
diff changeset
   392
1356
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   393
deploy_dmg:
1351
3ef333479676 added rules to generate a dmg (MAC)
Claus Gittinger <cg@exept.de>
parents: 1312
diff changeset
   394
	$(MAKE) newDMG
3ef333479676 added rules to generate a dmg (MAC)
Claus Gittinger <cg@exept.de>
parents: 1312
diff changeset
   395
	$(MAKE) hdUtil
3ef333479676 added rules to generate a dmg (MAC)
Claus Gittinger <cg@exept.de>
parents: 1312
diff changeset
   396
3ef333479676 added rules to generate a dmg (MAC)
Claus Gittinger <cg@exept.de>
parents: 1312
diff changeset
   397
newDMG:
3ef333479676 added rules to generate a dmg (MAC)
Claus Gittinger <cg@exept.de>
parents: 1312
diff changeset
   398
	rm -rf $(DMG_TMP)
3ef333479676 added rules to generate a dmg (MAC)
Claus Gittinger <cg@exept.de>
parents: 1312
diff changeset
   399
	$(MAKE) $(DMG_TMP)
3ef333479676 added rules to generate a dmg (MAC)
Claus Gittinger <cg@exept.de>
parents: 1312
diff changeset
   400
1356
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   401
hdUtil:
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   402
	-rm -f stx.dmg /tmp/stx.dmg
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   403
	(cd /tmp ; hdiutil create -fs HFSX -layout SPUD "stx.dmg" -srcfolder "$(DMG_TMP)" -format UDZO -volname "stx" -quiet)
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   404
1351
3ef333479676 added rules to generate a dmg (MAC)
Claus Gittinger <cg@exept.de>
parents: 1312
diff changeset
   405
dmg:    $(DMG_TMP)
3ef333479676 added rules to generate a dmg (MAC)
Claus Gittinger <cg@exept.de>
parents: 1312
diff changeset
   406
3ef333479676 added rules to generate a dmg (MAC)
Claus Gittinger <cg@exept.de>
parents: 1312
diff changeset
   407
$(DMG_TMP):
1356
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   408
	-mkdir "$(DMG_TMP)"
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   409
	cp "../../README.macosx" "$(DMG_TMP)"/README.txt
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   410
	-mkdir "$(DMG_TMP)"/stx.app
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   411
	-mkdir "$(DMG_TMP)"/stx.app/Contents
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   412
	-mkdir "$(DMG_TMP)"/stx.app/Contents/MacOS
1360
a0fa8b75d11f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1357
diff changeset
   413
	$(MAKE) dmgSTXPackages
1351
3ef333479676 added rules to generate a dmg (MAC)
Claus Gittinger <cg@exept.de>
parents: 1312
diff changeset
   414
	$(MAKE) dmgBINContents
3ef333479676 added rules to generate a dmg (MAC)
Claus Gittinger <cg@exept.de>
parents: 1312
diff changeset
   415
3ef333479676 added rules to generate a dmg (MAC)
Claus Gittinger <cg@exept.de>
parents: 1312
diff changeset
   416
#
3ef333479676 added rules to generate a dmg (MAC)
Claus Gittinger <cg@exept.de>
parents: 1312
diff changeset
   417
# the actual executable and its binaries
3ef333479676 added rules to generate a dmg (MAC)
Claus Gittinger <cg@exept.de>
parents: 1312
diff changeset
   418
#
3ef333479676 added rules to generate a dmg (MAC)
Claus Gittinger <cg@exept.de>
parents: 1312
diff changeset
   419
dmgBINContents:
1357
2fad3a905583 deploy rule
Claus Gittinger <cg@exept.de>
parents: 1356
diff changeset
   420
	(cd "$(DMG_TMP)"/stx.app/Contents/MacOS ; ln -s ../../Packages/stx/projects/smalltalk/stx .)
1360
a0fa8b75d11f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1357
diff changeset
   421
#        (cd "$(DMG_TMP)"/stx.app/Contents/MacOS ; ln -s ../../Packages/stx/projects/smalltalk/*.so .)
a0fa8b75d11f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1357
diff changeset
   422
#        (cd "$(DMG_TMP)"/stx.app/Contents/MacOS ; ln -s ../../Packages/stx/projects/smalltalk/*.stc .)
a0fa8b75d11f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1357
diff changeset
   423
#        (cd "$(DMG_TMP)"/stx.app/Contents/MacOS ; ln -s ../../Packages/stx/projects/smalltalk/*.stx .)
a0fa8b75d11f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1357
diff changeset
   424
#        (cd "$(DMG_TMP)"/stx.app/Contents/MacOS ; ln -s ../../Packages/stx/projects/smalltalk/*.rc .)
a0fa8b75d11f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1357
diff changeset
   425
#        (cd "$(DMG_TMP)"/stx.app/Contents/MacOS ; ln -s ../../Packages/stx/projects/smalltalk/patches .)
a0fa8b75d11f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1357
diff changeset
   426
#        (cd "$(DMG_TMP)"/stx.app/Contents/MacOS ; ln -s ../../Packages/stx/projects/smalltalk/stxPatches .)
a0fa8b75d11f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1357
diff changeset
   427
#        (cd "$(DMG_TMP)"/stx.app/Contents/MacOS ; ln -s ../../Packages/stx/projects/smalltalk/rc.d .)
1357
2fad3a905583 deploy rule
Claus Gittinger <cg@exept.de>
parents: 1356
diff changeset
   428
#        -cp -r resources "$(DMG_TMP)"/stx.app/Contents/MacOS/.
1351
3ef333479676 added rules to generate a dmg (MAC)
Claus Gittinger <cg@exept.de>
parents: 1312
diff changeset
   429
3ef333479676 added rules to generate a dmg (MAC)
Claus Gittinger <cg@exept.de>
parents: 1312
diff changeset
   430
#
3ef333479676 added rules to generate a dmg (MAC)
Claus Gittinger <cg@exept.de>
parents: 1312
diff changeset
   431
# sources and all other package stuff
3ef333479676 added rules to generate a dmg (MAC)
Claus Gittinger <cg@exept.de>
parents: 1312
diff changeset
   432
#
3ef333479676 added rules to generate a dmg (MAC)
Claus Gittinger <cg@exept.de>
parents: 1312
diff changeset
   433
dmgSTXPackages: "$(DMG_TMP)/stx.app/Packages"
3ef333479676 added rules to generate a dmg (MAC)
Claus Gittinger <cg@exept.de>
parents: 1312
diff changeset
   434
3ef333479676 added rules to generate a dmg (MAC)
Claus Gittinger <cg@exept.de>
parents: 1312
diff changeset
   435
"$(DMG_TMP)/stx.app/Packages":
3ef333479676 added rules to generate a dmg (MAC)
Claus Gittinger <cg@exept.de>
parents: 1312
diff changeset
   436
	@-mkdir "$(DMG_TMP)"
3ef333479676 added rules to generate a dmg (MAC)
Claus Gittinger <cg@exept.de>
parents: 1312
diff changeset
   437
	@-mkdir "$(DMG_TMP)/stx.app"
3ef333479676 added rules to generate a dmg (MAC)
Claus Gittinger <cg@exept.de>
parents: 1312
diff changeset
   438
	@-mkdir "$(DMG_TMP)/stx.app/Packages"
3ef333479676 added rules to generate a dmg (MAC)
Claus Gittinger <cg@exept.de>
parents: 1312
diff changeset
   439
	@-rm -f stx.dmg
1356
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   440
	-cp -r $(TOP)/../stx "$(DMG_TMP)/stx.app/Packages/."
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   441
	$(MAKE) clean_dmg
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   442
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   443
clean_dmg:
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   444
	$(MAKE) cleanTemporaryDeploymentHierarchy TMP_TOP="$(DMG_TMP)/stx.app/Packages"
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   445
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   446
################### end of mac specific #################
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   447
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   448
################### begin of tgz specific #################
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   449
# creates /tmp/stx.tgz
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   450
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   451
#
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   452
# should work on all systems
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   453
#
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   454
TGZ_TMP=/tmp/stx_tgz
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   455
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   456
deploy_tgz:
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   457
	$(MAKE) newTGZ
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   458
	$(MAKE) tarIt
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   459
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   460
tarIt:
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   461
	rm -f stx.tgz
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   462
	(cd $(TGZ_TMP); tar cvfz /tmp/stx.tgz stx)
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   463
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   464
newTGZ:
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   465
	rm -rf $(TGZ_TMP)
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   466
	$(MAKE) $(TGZ_TMP)
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   467
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   468
$(TGZ_TMP):
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   469
	@-mkdir "$(TGZ_TMP)"
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   470
	-cp -r $(TOP)/../stx "$(TGZ_TMP)/."
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   471
	$(MAKE) clean_tgz
1351
3ef333479676 added rules to generate a dmg (MAC)
Claus Gittinger <cg@exept.de>
parents: 1312
diff changeset
   472
1356
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   473
clean_tgz:
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   474
	$(MAKE) cleanTemporaryDeploymentHierarchy TMP_TOP="$(TGZ_TMP)"
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   475
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   476
################### end of tgz specific #################
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   477
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   478
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   479
################### common #################
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   480
#
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   481
# all of the following depend on TMP_TOP to be set to "stx"
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   482
# in a temporary copy of the whole work tree.
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   483
# The tree below that will be cleaned from any leftover build files.
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   484
# No hardcoding of any architecture specifics below, please.
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   485
#
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   486
FIND_PRINT=-print
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   487
#FIND_PRINT=
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   488
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   489
cleanTemporaryDeploymentHierarchy:
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   490
	$(MAKE) cleanNeverDeliveredStuff  TMP_TOP=$(TMP_TOP)
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   491
	$(MAKE) cleanPackages             TMP_TOP=$(TMP_TOP)
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   492
	$(MAKE) cleanUnfinished           TMP_TOP=$(TMP_TOP)
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   493
	$(MAKE) cleanObsoleteStuff        TMP_TOP=$(TMP_TOP)
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   494
#        $(MAKE) cleanObsoleteArchitectureSpecific TMP_TOP=$(TMP_TOP)
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   495
	$(MAKE) cleanArchitectureSpecific TMP_TOP=$(TMP_TOP)
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   496
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   497
cleanArchitectureSpecific:
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   498
	$(MAKE) cleanStuffNotForArch_$(ARCH)  TMP_TOP=$(TMP_TOP)
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   499
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   500
cleanStuffNotForArch_macosx:
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   501
	$(MAKE) cleanWindowsSpecific TMP_TOP=$(TMP_TOP)
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   502
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   503
cleanStuffNotForArch_linux:
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   504
	$(MAKE) cleanMacOSXSpecific TMP_TOP=$(TMP_TOP)
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   505
	$(MAKE) cleanWindowsSpecific TMP_TOP=$(TMP_TOP)
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   506
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   507
cleanStuffNotForArch_raspian:
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   508
	$(MAKE) cleanMacOSXSpecific TMP_TOP=$(TMP_TOP)
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   509
	$(MAKE) cleanWindowsSpecific TMP_TOP=$(TMP_TOP)
1351
3ef333479676 added rules to generate a dmg (MAC)
Claus Gittinger <cg@exept.de>
parents: 1312
diff changeset
   510
3ef333479676 added rules to generate a dmg (MAC)
Claus Gittinger <cg@exept.de>
parents: 1312
diff changeset
   511
cleanWindowsSpecific:
1356
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   512
	find "$(TMP_TOP)"/stx -name "*.mak" $(FIND_PRINT) -exec rm -f {} \;
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   513
	find "$(TMP_TOP)"/stx -name "*.bat" $(FIND_PRINT) -exec rm -f {} \;
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   514
	find "$(TMP_TOP)"/stx -name "nt.def" $(FIND_PRINT) -exec rm -f {} \;
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   515
	rm -rf "$(TMP_TOP)"/stx/support/win32
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   516
	rm -rf "$(TMP_TOP)"/stx/configurations/NT
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   517
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   518
cleanMacOSXSpecific:
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   519
	rm -rf "$(TMP_TOP)"/stx/libobjc
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   520
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   521
cleanObsoleteArchitectureSpecific:
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   522
	$(MAKE) cleanSunSpecific TMP_TOP=$(TMP_TOP)
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   523
	$(MAKE) cleanSgiSpecific TMP_TOP=$(TMP_TOP)
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   524
	$(MAKE) cleanNeXTSpecific TMP_TOP=$(TMP_TOP)
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   525
	$(MAKE) cleanAixSpecific TMP_TOP=$(TMP_TOP)
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   526
	$(MAKE) cleanDecSpecific TMP_TOP=$(TMP_TOP)
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   527
	$(MAKE) cleanHpSpecific TMP_TOP=$(TMP_TOP)
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   528
	$(MAKE) cleanMotorolaSpecific TMP_TOP=$(TMP_TOP)
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   529
	$(MAKE) cleanQnxSpecific TMP_TOP=$(TMP_TOP)
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   530
	$(MAKE) cleanUnixwareSpecific TMP_TOP=$(TMP_TOP)
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   531
	$(MAKE) cleanLinuxAoutOnElfSpecific TMP_TOP=$(TMP_TOP)
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   532
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   533
cleanLinuxAoutOnElfSpecific:
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   534
	rm -rf "$(TMP_TOP)"/stx/configurations/linux_a.out_onELF
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   535
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   536
cleanFreeBSDSpecific:
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   537
	rm -rf "$(TMP_TOP)"/stx/configurations/freeBSD
1351
3ef333479676 added rules to generate a dmg (MAC)
Claus Gittinger <cg@exept.de>
parents: 1312
diff changeset
   538
1356
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   539
cleanSunSpecific:
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   540
	rm -rf "$(TMP_TOP)"/stx/configurations/sun
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   541
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   542
cleanSgiSpecific:
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   543
	rm -rf "$(TMP_TOP)"/stx/configurations/sgi
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   544
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   545
cleanNeXTSpecific:
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   546
	rm -rf "$(TMP_TOP)"/stx/configurations/NeXT
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   547
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   548
cleanAixSpecific:
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   549
	rm -rf "$(TMP_TOP)"/stx/configurations/aix
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   550
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   551
cleanDecSpecific:
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   552
	rm -rf "$(TMP_TOP)"/stx/configurations/dec
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   553
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   554
cleanHpSpecific:
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   555
	rm -rf "$(TMP_TOP)"/stx/configurations/hp
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   556
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   557
cleanMotorolaSpecific:
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   558
	rm -rf "$(TMP_TOP)"/stx/configurations/motorola
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   559
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   560
cleanQnxSpecific:
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   561
	rm -rf "$(TMP_TOP)"/stx/configurations/qnx
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   562
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   563
cleanUnixwareSpecific:
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   564
	rm -rf "$(TMP_TOP)"/stx/configurations/unixware
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   565
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   566
#
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   567
# work in progress or not-yet-fully ported stuff
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   568
#
1351
3ef333479676 added rules to generate a dmg (MAC)
Claus Gittinger <cg@exept.de>
parents: 1312
diff changeset
   569
cleanUnfinished:
1360
a0fa8b75d11f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1357
diff changeset
   570
	rm -rf "$(TMP_TOP)"/stx/libobjc
1356
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   571
	rm -rf "$(TMP_TOP)"/stx/libdb/nosql/ken
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   572
	rm -rf "$(TMP_TOP)"/stx/libdb/nosql/sedna
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   573
	rm -rf "$(TMP_TOP)"/stx/libdb/libopenDBX
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   574
	rm -rf "$(TMP_TOP)"/stx/goodies/roelTyper
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   575
	rm -rf "$(TMP_TOP)"/stx/goodies/raytracing
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   576
	rm -rf "$(TMP_TOP)"/stx/goodies/imageSegments
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   577
	rm -rf "$(TMP_TOP)"/stx/goodies/hotdraw
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   578
	rm -rf "$(TMP_TOP)"/stx/goodies/goods
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   579
	rm -rf "$(TMP_TOP)"/stx/goodies/gitocello
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   580
	rm -rf "$(TMP_TOP)"/stx/goodies/glorp0_4
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   581
	rm -rf "$(TMP_TOP)"/stx/goodies/constraints
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   582
	rm -rf "$(TMP_TOP)"/stx/goodies/cassovary
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   583
	-find "$(TMP_TOP)"/stx -name "not_ported" $(FIND_PRINT) -exec rm -rf {} \;
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   584
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   585
#
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   586
# baby baby baby you're out of tiiiime...
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   587
#
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   588
cleanObsoleteStuff:
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   589
	rm -rf "$(TMP_TOP)"/stx/librt
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   590
	rm -rf "$(TMP_TOP)"/stx/libsnmp
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   591
	rm -rf "$(TMP_TOP)"/stx/goodies/stx
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   592
	rm -rf "$(TMP_TOP)"/stx/liboracle8
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   593
	rm -rf "$(TMP_TOP)"/stx/support/DLD
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   594
	rm -rf "$(TMP_TOP)"/stx/support/unixware
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   595
	rm -rf "$(TMP_TOP)"/stx/support/db
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   596
	rm -rf "$(TMP_TOP)"/stx/projects/drawtool
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   597
	-find "$(TMP_TOP)"/stx -name "obsolete" $(FIND_PRINT) -exec rm -rf {} \;
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   598
	-find "$(TMP_TOP)"/stx -name "obsolete_*" $(FIND_PRINT) -exec rm -rf {} \;
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   599
	-find "$(TMP_TOP)"/stx -name "*_old" $(FIND_PRINT) -exec rm -rf {} \;
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   600
	-find "$(TMP_TOP)"/stx -name "*_old2" $(FIND_PRINT) -exec rm -rf {} \;
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   601
	-find "$(TMP_TOP)"/stx -name "*.old" $(FIND_PRINT) -exec rm -rf {} \;
1351
3ef333479676 added rules to generate a dmg (MAC)
Claus Gittinger <cg@exept.de>
parents: 1312
diff changeset
   602
1356
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   603
#
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   604
# stuff we keep secret - that's live
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   605
#
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   606
cleanNeverDeliveredStuff:
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   607
	mv "$(TMP_TOP)"/stx/librun/main.c "$(TMP_TOP)"/stx/librun/main_c
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   608
	-mv "$(TMP_TOP)"/stx/librun/buildDate.h "$(TMP_TOP)"/stx/librun/buildDate_h
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   609
	-mv "$(TMP_TOP)"/stx/librun/symbolAddress.h "$(TMP_TOP)"/stx/librun/symbolAddress_h
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   610
	-mv "$(TMP_TOP)"/stx/librun/symbols.h "$(TMP_TOP)"/stx/librun/symbols_h
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   611
	rm -f "$(TMP_TOP)"/stx/librun/*.c
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   612
	rm -f "$(TMP_TOP)"/stx/librun/*.h
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   613
	mv "$(TMP_TOP)"/stx/librun/main_c "$(TMP_TOP)"/stx/librun/main.c
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   614
	-mv "$(TMP_TOP)"/stx/librun/buildDate_h "$(TMP_TOP)"/stx/librun/buildDate.h
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   615
	-mv "$(TMP_TOP)"/stx/librun/symbolAddress_h "$(TMP_TOP)"/stx/librun/symbolAddress.h
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   616
	-mv "$(TMP_TOP)"/stx/librun/symbols_h "$(TMP_TOP)"/stx/librun/symbols.h
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   617
	rm -rf "$(TMP_TOP)"/stx/librun/doc
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   618
	rm -rf "$(TMP_TOP)"/stx/librun/ieee754_support
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   619
	rm -rf "$(TMP_TOP)"/stx/librun/libffi*
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   620
	rm -rf "$(TMP_TOP)"/stx/librun/genDate*
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   621
	rm -rf "$(TMP_TOP)"/stx/librun/*.bpr
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   622
	rm -rf "$(TMP_TOP)"/stx/librun/*.BPR
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   623
	rm -rf "$(TMP_TOP)"/stx/librun/*.cpp
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   624
	rm -rf "$(TMP_TOP)"/stx/librun/*.dbg
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   625
	rm -rf "$(TMP_TOP)"/stx/librun/*.gdb
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   626
	rm -rf "$(TMP_TOP)"/stx/librun/*.s
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   627
	rm -rf "$(TMP_TOP)"/stx/librun/*.asm
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   628
	rm -rf "$(TMP_TOP)"/stx/librun/*.sln
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   629
	rm -rf "$(TMP_TOP)"/stx/librun/*.def
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   630
	rm -rf "$(TMP_TOP)"/stx/librun/*.exp
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   631
	rm -rf "$(TMP_TOP)"/stx/librun/*.rc
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   632
	rm -rf "$(TMP_TOP)"/stx/librun/*.vcproj
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   633
	rm -rf "$(TMP_TOP)"/stx/librun/*.vcExpress
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   634
	rm -f "$(TMP_TOP)"/stx/stc/*.c
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   635
	rm -f "$(TMP_TOP)"/stx/stc/*.y
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   636
	rm -f "$(TMP_TOP)"/stx/stc/*.l
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   637
	rm -f "$(TMP_TOP)"/stx/stc/*.bpr
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   638
	rm -f "$(TMP_TOP)"/stx/stc/*.BPR
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   639
	rm -f "$(TMP_TOP)"/stx/stc/global.h
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   640
	rm -f "$(TMP_TOP)"/stx/stc/nttokens.h
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   641
	rm -f "$(TMP_TOP)"/stx/stc/tokens.h
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   642
	rm -f "$(TMP_TOP)"/stx/stc/sha1.h
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   643
	rm -f "$(TMP_TOP)"/stx/stc/*.cpp
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   644
	rm -f "$(TMP_TOP)"/stx/stc/*.sln
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   645
	rm -f "$(TMP_TOP)"/stx/stc/*.vcproj
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   646
	rm -f "$(TMP_TOP)"/stx/stc/*.depend
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   647
	rm -f "$(TMP_TOP)"/stx/stc/defs.h
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   648
	rm -rf "$(TMP_TOP)"/stx/stc/bin
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   649
	rm -rf "$(TMP_TOP)"/stx/stc/obj
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   650
	rm -f "$(TMP_TOP)"/stx/stc/tests/*.xc
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   651
	rm -f "$(TMP_TOP)"/stx/stc/tests/*.c
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   652
	-find "$(TMP_TOP)"/stx -name "not_delivered" $(FIND_PRINT) -exec rm -rf {} \;
1351
3ef333479676 added rules to generate a dmg (MAC)
Claus Gittinger <cg@exept.de>
parents: 1312
diff changeset
   653
3ef333479676 added rules to generate a dmg (MAC)
Claus Gittinger <cg@exept.de>
parents: 1312
diff changeset
   654
cleanPackages:
1356
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   655
#        (cd "$(TMP_TOP)"/stx ; make cleanjunk)
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   656
	(cd "$(TMP_TOP)"/stx/stc/tests ; make clobber)
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   657
	rm -rf "$(TMP_TOP)"/stx/libjava.both
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   658
	rm -rf "$(TMP_TOP)"/stx/libjava.cvs
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   659
	rm -rf "$(TMP_TOP)"/stx/libjava.old
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   660
	rm -rf "$(TMP_TOP)"/stx/librun-*
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   661
	rm -rf "$(TMP_TOP)"/stx/librun_*
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   662
	rm -rf "$(TMP_TOP)"/stx/librun.*
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   663
	rm -rf "$(TMP_TOP)"/stx/stc/*.dSYM
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   664
	rm -rf "$(TMP_TOP)"/stx/stc/*/*.dSYM
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   665
	rm -rf "$(TMP_TOP)"/stx/stc/libfl
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   666
	rm -rf "$(TMP_TOP)"/stx/stc/tests/test[0-9]*
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   667
	rm -rf "$(TMP_TOP)"/stx/stc/tests/hw
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   668
	rm -rf "$(TMP_TOP)"/stx/stc/tests
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   669
	rm -rf "$(TMP_TOP)"/stx/libscm.cvs
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   670
	rm -rf "$(TMP_TOP)"/stx/libscm.hg
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   671
	rm -f "$(TMP_TOP)"/stx/libbasic*/[A-Z]*.c
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   672
	rm -f "$(TMP_TOP)"/stx/libcomp/[A-Z]*.c
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   673
	rm -f "$(TMP_TOP)"/stx/libview/[A-Z]*.c
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   674
	rm -f "$(TMP_TOP)"/stx/libwidg/[A-Z]*.c
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   675
	rm -f "$(TMP_TOP)"/stx/libtool*/[A-Z]*.c
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   676
	rm -f "$(TMP_TOP)"/stx/libui/[A-Z]*.c
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   677
	rm -f "$(TMP_TOP)"/stx/libdb/[A-Z]*.c
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   678
	rm -f "$(TMP_TOP)"/stx/libdb/*/[A-Z]*.c
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   679
	rm -f "$(TMP_TOP)"/stx/libopengl/[A-Z]*.c
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   680
	rm -f "$(TMP_TOP)"/stx/goodies/chronos/[A-Z]*.c
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   681
	rm -f "$(TMP_TOP)"/stx/goodies/chronos/*/[A-Z]*.c
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   682
	rm -f "$(TMP_TOP)"/stx/goodies/*/i_[A-Z]*.c
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   683
	rm -rf "$(TMP_TOP)"/stx/monticello_packages
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   684
	rm -rf "$(TMP_TOP)"/stx/support/tools/splint-*
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   685
	rm -rf "$(TMP_TOP)"/stx/support/tools/cscope-*
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   686
	rm -rf "$(TMP_TOP)"/stx/support/xft
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   687
	rm -rf "$(TMP_TOP)"/stx/support/libjpeg
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   688
	rm -rf "$(TMP_TOP)"/stx/support/libjpeg-7
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   689
	rm -rf "$(TMP_TOP)"/stx/projects/tinytalk
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   690
	rm -rf "$(TMP_TOP)"/stx/projects/minitalk
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   691
	rm -rf "$(TMP_TOP)"/stx/projects/smalltalk/package-cache
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   692
	rm -rf "$(TMP_TOP)"/stx/projects/smalltalk/modules
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   693
	rm -rf "$(TMP_TOP)"/stx/projects/smalltalk/stcTests
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   694
	rm -rf "$(TMP_TOP)"/stx/projects/smalltalk/crashdumps
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   695
	rm -rf "$(TMP_TOP)"/stx/projects/smalltalk/examples
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   696
	rm -rf "$(TMP_TOP)"/stx/projects/smalltalk/expeccoPatches
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   697
	rm -rf "$(TMP_TOP)"/stx/projects/smalltalk/.SandstoneDb
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   698
	rm -rf "$(TMP_TOP)"/stx/projects/smalltalk/changes_*
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   699
	rm -f "$(TMP_TOP)"/stx/projects/smalltalk/[A-Z]*.st
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   700
	rm -f "$(TMP_TOP)"/stx/projects/smalltalk/old_settings.stx
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   701
	rm -f "$(TMP_TOP)"/stx/projects/smalltalk/*.txt
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   702
	rm -f "$(TMP_TOP)"/stx/projects/smalltalk/*.uprj
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   703
	rm -f "$(TMP_TOP)"/stx/projects/smalltalk/*.js
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   704
	rm -f "$(TMP_TOP)"/stx/projects/smalltalk/evo*.wsp
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   705
	rm -f "$(TMP_TOP)"/stx/projects/smalltalk/*.html
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   706
	rm -f "$(TMP_TOP)"/stx/projects/smalltalk/*.log
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   707
	rm -f "$(TMP_TOP)"/stx/projects/smalltalk/*.png
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   708
	rm -f "$(TMP_TOP)"/stx/projects/smalltalk/data
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   709
	rm -f "$(TMP_TOP)"/stx/projects/smalltalk/out
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   710
	rm -f "$(TMP_TOP)"/stx/projects/smalltalk/err
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   711
	rm -f "$(TMP_TOP)"/stx/projects/smalltalk/outfile
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   712
	rm -f "$(TMP_TOP)"/stx/projects/smalltalk/ss
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   713
	rm -f "$(TMP_TOP)"/stx/projects/smalltalk/stbc.rc
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   714
	rm -f "$(TMP_TOP)"/stx/projects/smalltalk/*.bos
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   715
	rm -f "$(TMP_TOP)"/stx/projects/smalltalk/*.swf
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   716
	rm -f "$(TMP_TOP)"/stx/projects/smalltalk/*.sln
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   717
	rm -f "$(TMP_TOP)"/stx/projects/smalltalk/*.vcproj
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   718
	rm -f "$(TMP_TOP)"/stx/projects/smalltalk/*.vcxproj
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   719
	rm -f "$(TMP_TOP)"/stx/projects/smalltalk/*.tgz
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   720
	rm -f "$(TMP_TOP)"/stx/projects/smalltalk/*.dmg
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   721
	rm -f "$(TMP_TOP)"/stx/projects/smalltalk/*_dmg
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   722
	rm -f "$(TMP_TOP)"/stx/projects/smalltalk/*_tgz
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   723
	rm -f "$(TMP_TOP)"/stx/projects/smalltalk/X
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   724
	rm -f "$(TMP_TOP)"/stx/projects/smalltalk/ZZ
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   725
	rm -f "$(TMP_TOP)"/stx/projects/smalltalk/test*
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   726
	find "$(TMP_TOP)"/stx/projects -name "*.mcz" $(FIND_PRINT) -exec rm -f {} \;
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   727
	find "$(TMP_TOP)"/stx/projects -name "*.sav" $(FIND_PRINT) -exec rm -f {} \;
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   728
	find "$(TMP_TOP)"/stx/projects -name "*.img" $(FIND_PRINT) -exec rm -f {} \;
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   729
	find "$(TMP_TOP)"/stx/projects -name "*.dmg" $(FIND_PRINT) -exec rm -f {} \;
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   730
	find "$(TMP_TOP)"/stx/projects -name "*.chg" $(FIND_PRINT) -exec rm -f {} \;
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   731
	find "$(TMP_TOP)"/stx/projects -name "*.dat" $(FIND_PRINT) -exec rm -f {} \;
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   732
	find "$(TMP_TOP)"/stx -name "cscope.out" $(FIND_PRINT) -exec rm -f {} \;
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   733
	find "$(TMP_TOP)"/stx -name "a.out" $(FIND_PRINT) -exec rm -f {} \;
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   734
	find "$(TMP_TOP)"/stx -name ".stxgdb" $(FIND_PRINT) -exec rm -f {} \;
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   735
	find "$(TMP_TOP)"/stx -name "*.o" $(FIND_PRINT) -exec rm -f {} \;
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   736
	find "$(TMP_TOP)"/stx -name "*.st-e" $(FIND_PRINT) -exec rm -f {} \;
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   737
	find "$(TMP_TOP)"/stx -name "*.bad" $(FIND_PRINT) -exec rm -f {} \;
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   738
	find "$(TMP_TOP)"/stx -name "*.bak" $(FIND_PRINT) -exec rm -f {} \;
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   739
	find "$(TMP_TOP)"/stx -name "*.sav" $(FIND_PRINT) -exec rm -f {} \;
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   740
	find "$(TMP_TOP)"/stx -name "*.swp" $(FIND_PRINT) -exec rm -f {} \;
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   741
	-find "$(TMP_TOP)"/stx -name "stxtmp_*" $(FIND_PRINT) -exec rm -f {} \;
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   742
	-find "$(TMP_TOP)"/stx -name ".DS_Store" $(FIND_PRINT) -exec rm -f {} \;
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   743
	-find "$(TMP_TOP)"/stx -name "CVS" $(FIND_PRINT) -exec rm -rf {} \;
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   744
	-find "$(TMP_TOP)"/stx -name ".CVS" $(FIND_PRINT) -exec rm -rf {} \;
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   745
	-find "$(TMP_TOP)"/stx -name ".hg" $(FIND_PRINT) -exec rm -rf {} \;
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   746
	-find "$(TMP_TOP)"/stx -name "..hg" $(FIND_PRINT) -exec rm -rf {} \;
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   747
	-find "$(TMP_TOP)"/stx -name ".#*" $(FIND_PRINT) -exec rm -rf {} \;