Make.proto
author Jan Vrany <jan.vrany@fit.cvut.cz>
Mon, 06 Jun 2016 16:57:13 +0100
branchjv
changeset 1437 a208060f13b0
parent 1397 84f4931efb5d
child 1440 b822d6dc20e7
permissions -rw-r--r--
Fixed UNIX makefiles to include classes in stx:projects/smalltalk package ...like they are in Windows builds. The problem is that UNIX Make.proto is (still) hand-written.
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 --------------------
1437
a208060f13b0 Fixed UNIX makefiles to include classes in stx:projects/smalltalk package
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 1397
diff changeset
   120
INCLUDE_TOP=$(TOP)/..
a208060f13b0 Fixed UNIX makefiles to include classes in stx:projects/smalltalk package
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 1397
diff changeset
   121
LOCALINCLUDES= -I$(INCLUDE_TOP)/stx/goodies/refactoryBrowser/helpers -I$(INCLUDE_TOP)/stx/libwidg3 -I$(INCLUDE_TOP)/stx/libbasic -I$(INCLUDE_TOP)/stx/libjavascript -I$(INCLUDE_TOP)/stx/goodies/refactoryBrowser/parser -I$(INCLUDE_TOP)/stx/goodies/refactoryBrowser/refactoring -I$(INCLUDE_TOP)/stx/libwidg -I$(INCLUDE_TOP)/stx/libview2 -I$(INCLUDE_TOP)/stx/libbasic2 -I$(INCLUDE_TOP)/stx/libview -I$(INCLUDE_TOP)/stx/libhtml -I$(INCLUDE_TOP)/stx/libtool -I$(INCLUDE_TOP)/stx/libtool2 -I$(INCLUDE_TOP)/stx/libcomp -I$(INCLUDE_TOP)/stx/goodies/refactoryBrowser/changes -I$(INCLUDE_TOP)/stx/goodies/refactoryBrowser/browser -I$(INCLUDE_TOP)/stx/goodies/refactoryBrowser/lint -I$(INCLUDE_TOP)/stx/libboss -I$(INCLUDE_TOP)/stx/libwidg2 -I$(INCLUDE_TOP)/stx/libbasic3 -I$(INCLUDE_TOP)/stx/libui
8
d82829c0d867 *** empty log message ***
claus
parents: 7
diff changeset
   122
796
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   123
#
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   124
# default target: create the TARGET (usually smalltalk)
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   125
#
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   126
all::   $(TARGET)$(TARGET_RULE_EXTENSION) symlinks
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   127
	@-if [ "$(ALSO_MAKE_STATIC_TARGET)" = "1" ]; then \
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   128
	    mv stx stx_dynamic; \
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   129
	    $(MAKE) stx_fullstatic; \
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   130
	fi
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
#
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   133
# same, force recreation of link-directories
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   134
#
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   135
allNew: $(TARGET)$(TARGET_RULE_EXTENSION) misc
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   136
	@-if [ "$(ALSO_MAKE_STATIC_TARGET)" = "1" ]; then \
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   137
	    mv stx stx_dynamic; \
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   138
	    $(MAKE) stx_fullstatic; \
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   139
	fi
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
#
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   142
# create symbolic links to sources, resources etc.
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   143
# 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
   144
#
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   145
symlinks:   includeLink misc
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
#
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   148
# the standard smalltalk executable:
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   149
# basic classes + view & widgets + tools + persistency
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   150
#
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   151
smalltalk:: $(TARGET)$(TARGET_RULE_EXTENSION)
130
ad3285492ec5 aix-now supports shared libs
Claus Gittinger <cg@exept.de>
parents: 124
diff changeset
   152
796
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   153
#
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   154
# a specialized mySmalltalk with additional class(es) and additional
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   155
# C-library builtIn
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   156
#
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   157
MY_ADDITIONAL_OBJECTS=Foo.$(O)
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   158
MY_ADDITIONAL_CLASSES=Foo
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   159
MY_ADDITIONAL_LIBS=$(TOP)/../myClasses/libFoo.a
130
ad3285492ec5 aix-now supports shared libs
Claus Gittinger <cg@exept.de>
parents: 124
diff changeset
   160
1437
a208060f13b0 Fixed UNIX makefiles to include classes in stx:projects/smalltalk package
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 1397
diff changeset
   161
mySmalltalk: $(COMMON_OBJS) $(MY_ADDITIONAL_OBJECTS)
796
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   162
	@echo "making special smalltalk ..."
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   163
	@$(MAKE) linkTarget \
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   164
		LIBOBJS="$(LIBOBJS) $(EXTRA_UI_OBJ)" \
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   165
		LINK_OBJS="$(LINK_OBJS)" \
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   166
		LINK_LIBOBJS="$(LINK_LIBOBJS) $(EXTRA_LINK_UI_OBJ)" \
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   167
		LINK_LIBRUN="$(LINK_LIBRUN)" \
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   168
		LIBRUN="$(LIBRUN)" \
1437
a208060f13b0 Fixed UNIX makefiles to include classes in stx:projects/smalltalk package
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 1397
diff changeset
   169
		ADDITIONAL_OBJS="$(COMMON_OBJS) $(MY_ADDITIONAL_OBJECTS)" \
a208060f13b0 Fixed UNIX makefiles to include classes in stx:projects/smalltalk package
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 1397
diff changeset
   170
		ADDITIONAL_CLASSES="$(COMMON_CLASSES) $(MY_ADDITIONAL_CLASSES)" \
796
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   171
		ADDITIONAL_LIBS=$(MY_ADDITIONAL_LIBS) \
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   172
		LIBLIST="$(LIBLIST)"
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   173
	@$(MAKE) removeLinkLibs
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
#
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   176
# by default, the TARGET rule calls for one of the
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   177
# rules below. Which one is controlled by the
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   178
# architecture-specific definition file.
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   179
#
1437
a208060f13b0 Fixed UNIX makefiles to include classes in stx:projects/smalltalk package
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 1397
diff changeset
   180
$(TARGET)_shared: $(COMMON_OBJS)
796
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   181
	@echo "making shared library linked smalltalk ..."
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   182
	echo EXTRA_LINK_UI_OBJ = $(EXTRA_LINK_UI_OBJ)
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   183
	$(MAKE) linkTarget \
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   184
		LIBOBJS="$(LIBOBJS) $(EXTRA_UI_OBJ)" \
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   185
		LINK_LIBOBJS="$(LINK_LIBOBJS) $(EXTRA_LINK_UI_OBJ)" \
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   186
		LINK_LIBRUN=$(LINK_LIBRUN) \
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   187
		LIBRUN=$(LIBRUN) \
1437
a208060f13b0 Fixed UNIX makefiles to include classes in stx:projects/smalltalk package
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 1397
diff changeset
   188
		ADDITIONAL_OBJS="$(COMMON_OBJS) $(ADDITIONAL_OBJS)" \
a208060f13b0 Fixed UNIX makefiles to include classes in stx:projects/smalltalk package
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 1397
diff changeset
   189
		ADDITIONAL_CLASSES="$(COMMON_CLASSES) $(ADDITIONAL_CLASSES)" \
796
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   190
		LIBLIST="$(LIBLIST) $(EXTRA_UI_CLASSES)"
132
ec7eba4010f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 130
diff changeset
   191
1437
a208060f13b0 Fixed UNIX makefiles to include classes in stx:projects/smalltalk package
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 1397
diff changeset
   192
$(TARGET)_static: $(COMMON_OBJS) $(STATIC_LIBRUN)
796
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   193
	@echo "making statically linked smalltalk ..."
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   194
	@$(MAKE) linkTarget \
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   195
		LIBOBJS="" \
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   196
		LINK_OBJS="$(STATIC_OBJS) $(STATIC_EXTRA_UI_OBJ)" \
1282
8c748cc60b6b static link fixes
Claus Gittinger <cg@exept.de>
parents: 1108
diff changeset
   197
		LINK_LIBOBJS="$(STATIC_LIBOBJS) $(STATIC_EXTRA_UI_OBJ)" \
796
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   198
		LINK_LIBRUN="$(STATIC_LIBRUN)" \
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   199
		LIBRUN="$(STATIC_LIBRUN)" \
1437
a208060f13b0 Fixed UNIX makefiles to include classes in stx:projects/smalltalk package
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 1397
diff changeset
   200
		ADDITIONAL_OBJS="$(COMMON_OBJS) $(STATIC_ADDITIONAL_OBJS)" \
a208060f13b0 Fixed UNIX makefiles to include classes in stx:projects/smalltalk package
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 1397
diff changeset
   201
		ADDITIONAL_CLASSES="$(COMMON_CLASSES) $(STATIC_ADDITIONAL_CLASSES)" \
1282
8c748cc60b6b static link fixes
Claus Gittinger <cg@exept.de>
parents: 1108
diff changeset
   202
		EXTRA_LIBS="$(STATIC_EXTRA_LIBS)" \
796
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   203
		LIBLIST="$(LIBLIST) $(EXTRA_UI_CLASSES)"
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   204
	@$(MAKE) removeLinkLibs
25
claus
parents: 24
diff changeset
   205
1437
a208060f13b0 Fixed UNIX makefiles to include classes in stx:projects/smalltalk package
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 1397
diff changeset
   206
$(TARGET)_fullstatic: $(COMMON_OBJS) $(STATIC_LIBRUN)
796
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   207
	if [ -f $(LIBRUNDIR)/librun.a ]; then \
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   208
	    echo "librun.a already made."; \
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   209
	else \
1108
57820a0912e3 Use && to chain commands
Stefan Vogel <sv@exept.de>
parents: 1078
diff changeset
   210
	    cd $(LIBRUNDIR) && $(MAKE) librun.a; \
796
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   211
	fi
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   212
	@echo "making full statically linked smalltalk ..."
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   213
	@$(MAKE) linkTarget \
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   214
		LIBOBJS="" \
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   215
		LINK_OBJS="$(STATIC_OBJS) $(STATIC_EXTRA_UI_OBJ)" \
1282
8c748cc60b6b static link fixes
Claus Gittinger <cg@exept.de>
parents: 1108
diff changeset
   216
		LINK_LIBOBJS="$(STATIC_LIBOBJS) $(STATIC_EXTRA_UI_OBJ)" \
796
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   217
		LINK_LIBRUN="$(STATIC_LIBRUN)" \
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   218
		LIBRUN="$(STATIC_LIBRUN)" \
1437
a208060f13b0 Fixed UNIX makefiles to include classes in stx:projects/smalltalk package
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 1397
diff changeset
   219
		ADDITIONAL_OBJS="$(COMMON_OBJS) $(STATIC_ADDITIONAL_OBJS)" \
a208060f13b0 Fixed UNIX makefiles to include classes in stx:projects/smalltalk package
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 1397
diff changeset
   220
		ADDITIONAL_CLASSES="$(COMMON_CLASSES) $(STATIC_ADDITIONAL_CLASSES)" \
796
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   221
		LIBLIST="$(LIBLIST) $(EXTRA_UI_CLASSES)" \
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   222
		MATHLIB="$(STATIC_MATHLIB)" \
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   223
		EXTRA_LIBS="$(STATIC_EXTRA_LIBS)" \
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   224
		SYSLIBS="$(STATIC_SYSLIBS)"
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   225
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   226
	@$(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
   227
796
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   228
AIX_SHARED_LIBOBJS= \
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   229
	$(LIBBASICDIR)/libstx_libbasic.so \
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   230
	$(LIBCOMPDIR)/libstx_libcomp.so \
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   231
	$(LIBVIEWDIR)/libstx_libview.so \
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   232
	$(LIBVIEW2DIR)/libstx_libview2.so \
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   233
	$(LIBWIDGDIR)/libstx_libwidg.so \
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   234
	$(LIBTOOLDIR)/libstx_libtool.so \
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   235
	$(LIBBASIC2DIR)/libstx_libbasic2.so \
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   236
	$(LIBBASIC3DIR)/libstx_libbasic3.so \
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   237
	$(LIBHTMLDIR)/libstx_libhtml.so \
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   238
	$(LIBWIDG2DIR)/libstx_libwidg2.so \
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   239
	$(PERSDIR)/libstx_libdbase.so
16
db5d473df9f0 *** empty log message ***
claus
parents: 15
diff changeset
   240
796
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   241
aix:
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   242
	    @echo "making shared library linked smalltalk for aix ..."
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   243
	    @$(MAKE) linkTarget \
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   244
		LIBOBJS="$(AIX_SHARED_LIBOBJS)" \
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   245
		EXTRA_OBJ="$(EXTRA_OBJ)" \
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   246
		EXTRA_LINK_OBJ="$(EXTRA_LINK_OBJ)" \
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   247
		LIBLIST="$(LIBLIST)" \
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   248
		LINK_LIBRUN=$(LINK_LIBDIR)librun.so \
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   249
		LIBRUN=$(LIBRUNDIR)/librun.so
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   250
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   251
aix_librun_only:
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   252
	    @echo "making partial shared library linked smalltalk ..."
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   253
	    @$(MAKE) linkTarget LIBRUN=$(LIBRUNDIR)/librun.so
362
87f7b4670ae8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 334
diff changeset
   254
796
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   255
forceStatic:
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   256
	    (cd $(LIBBASICDIR) ; $(MAKE) libbasicInit.o)
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   257
	    -rm -f $(LIBBASICDIR)/libbasic.o
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   258
	    $(MAKE) linkTarget LIBRUN="$(LIBRUNDIR)/*.o" LIBBASIC="$(LIBBASICDIR)/*.o"
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   259
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   260
$(LIBVIEWDIR)/XWorkstation.o:
1108
57820a0912e3 Use && to chain commands
Stefan Vogel <sv@exept.de>
parents: 1078
diff changeset
   261
	cd $(LIBVIEWDIR) && $(MAKE) XWorkstation.o
796
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   262
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   263
$(LIBVIEWDIR)/XWorkstation.so:
1108
57820a0912e3 Use && to chain commands
Stefan Vogel <sv@exept.de>
parents: 1078
diff changeset
   264
	cd $(LIBVIEWDIR) && $(MAKE) XWorkstation.so
796
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   265
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   266
$(LIBVIEWDIR)/GLXWorkstation.o:
1108
57820a0912e3 Use && to chain commands
Stefan Vogel <sv@exept.de>
parents: 1078
diff changeset
   267
	cd $(LIBVIEWDIR) && $(MAKE) GLXWorkstation.o
796
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   268
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   269
$(LIBVIEWDIR)/GLXWorkstation.so:
1108
57820a0912e3 Use && to chain commands
Stefan Vogel <sv@exept.de>
parents: 1078
diff changeset
   270
	cd $(LIBVIEWDIR) && $(MAKE) GLXWorkstation.so
788
51c7d65adf36 automatically generated by browser
Claus Gittinger <cg@exept.de>
parents: 717
diff changeset
   271
51c7d65adf36 automatically generated by browser
Claus Gittinger <cg@exept.de>
parents: 717
diff changeset
   272
796
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   273
#
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   274
# dont want these ttt-tempfile abbrevs to be included ...
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   275
#
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   276
abbrev.stc::
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   277
	    @-rm -f ttt*.*
788
51c7d65adf36 automatically generated by browser
Claus Gittinger <cg@exept.de>
parents: 717
diff changeset
   278
796
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   279
#
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   280
# currently, abbrev,stc must be made cross
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   281
#
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   282
ntAbbrev.stc: include/abbrev.stc
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   283
	cp include/abbrev.stc ntAbbrev.stc
788
51c7d65adf36 automatically generated by browser
Claus Gittinger <cg@exept.de>
parents: 717
diff changeset
   284
796
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   285
#
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   286
# dont want local abbrevs to be included ...
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   287
#
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   288
collectAbbrev::
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   289
	    @-rm -f abbrev.stc
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   290
	    @-if [ "$(SUPPRESS_ABBREVS)" = "" ]; then \
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   291
	      if [ -d include ]; then \
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   292
		if [ ! -f include/abbrev.stc ]; then \
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   293
		    (cd include; $(LNS) ../$(INCLUDE)/abbrev.stc . );   \
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;   \
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   296
	    fi
788
51c7d65adf36 automatically generated by browser
Claus Gittinger <cg@exept.de>
parents: 717
diff changeset
   297
796
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   298
collectAutoload::
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   299
	    @-rm -f autoloadList.stc
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   300
	    @-if [ -d include ]; then \
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   301
		if [ ! -f include/autoloadList.stc ]; then \
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   302
		    (cd include; $(LNS) ../$(INCLUDE)/autoloadList.stc . ); \
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   303
		fi;                                                             \
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   304
	    fi
15
6cb30063ea41 *** empty log message ***
claus
parents: 13
diff changeset
   305
796
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   306
classes::
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   307
	    test -d classes || mkdir classes
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   308
	    -for i in source/*.st; do \
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   309
		stcomp -i stcomp.img $$i; \
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   310
	    done
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   311
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   312
include:    includeLink
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   313
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   314
misc:       examples
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   315
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   316
examples:
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   317
	    test -d examples || mkdir examples examples/3D
1108
57820a0912e3 Use && to chain commands
Stefan Vogel <sv@exept.de>
parents: 1078
diff changeset
   318
	    -cd examples/3D && $(LNS) ../../$(TOP)/clients/GLdemos/*.data . 2>/dev/null
8
d82829c0d867 *** empty log message ***
claus
parents: 7
diff changeset
   319
796
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   320
#
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   321
# clean out intermediate chunk
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   322
#
0
0cb137a77319 Initial revision
claus
parents:
diff changeset
   323
cleanjunk::
796
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   324
	    @-rm -f a.out SymbolTable ttt main.c
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   325
	    @-rm -f classList.c fclassList.c nxclassList.c basicclassList.c
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   326
	    @-rm -f betaclassList.c miniList.c tinyList.c
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   327
	    @-rm -f modulList.stc modulList.c modulList.o
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   328
	    @-rm -f pers* pers2 data data2 data.boss tetris.scores
0
0cb137a77319 Initial revision
claus
parents:
diff changeset
   329
796
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   330
cleanlinks:
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   331
	    @-rm -rf source bitmaps binaries resources examples include
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
#
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   334
# clean out all that is not needed to run smalltalk
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   335
#
0
0cb137a77319 Initial revision
claus
parents:
diff changeset
   336
clean::
796
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   337
	    @-rm -f a.out SymbolTable ttt main.c
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   338
	    @-rm -f modulList.stc modulList.c modulList.o
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   339
	    @-rm -f classList.stc classList.c classList.o
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   340
	    @-rm -f fclassList.stc fclassList.c
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   341
	    @-rm -f nxclassList.stc nxclassList.c
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   342
	    @-rm -f basicclassList.stc basicclassList.c
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   343
	    @-rm -f betaclassList.stc betaclassList.c
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   344
	    @-rm -f miniList.stc miniList.c
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   345
	    @-rm -f tinyList.stc tinyList.c
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   346
	    @-rm -f pers pers2 data data2 data.boss tetris.scores
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   347
	    @-rm -f st.img st2.img st.img.sav errorOutput
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   348
	    @-rm -f .stx*.mem
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   349
	    @-rm -rf modules stxtmp*
788
51c7d65adf36 automatically generated by browser
Claus Gittinger <cg@exept.de>
parents: 717
diff changeset
   350
796
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   351
#
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   352
# clean out all that can be regenerated
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   353
#
788
51c7d65adf36 automatically generated by browser
Claus Gittinger <cg@exept.de>
parents: 717
diff changeset
   354
clobber::
796
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   355
	    @$(MAKE) removeLinkLibs
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   356
	    @-rm -f modulList.stc modulList.c modulList.o
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   357
	    @-rm -rf resources source bitmaps include examples lib
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   358
	    @-rm -f stx st.img st.img.sav st.sav
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   359
	    @-rm -f main.o
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   360
	    @-rm -rf modules
1368
d2cade96cabd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1360
diff changeset
   361
	    @-rm -rf package
796
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   362
	    @-rm -rf stxtmp_*
0
0cb137a77319 Initial revision
claus
parents:
diff changeset
   363
1312
6b35651ab77e Change dependency for main.o from makefile to Make.proto
Stefan Vogel <sv@exept.de>
parents: 1288
diff changeset
   364
main.o::    $(INCLUDE)/stc.h $(INCLUDE)/stcIntern.h Make.proto
0
0cb137a77319 Initial revision
claus
parents:
diff changeset
   365
796
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   366
installProgsIf:: $(INSTALLBIN_DIR)
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   367
	@-echo "installing smalltalk..."
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   368
	$(INSTALL_SCRIPT_CMD) smalltalk $(INSTALLBIN_DIR)
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   369
	@-echo "installing stx..."
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   370
	$(INSTALL_BIN_CMD) stx $(INSTALLBIN_DIR)
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   371
	-strip $(INSTALLBIN_DIR)/stx
383
3dfae183631c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 362
diff changeset
   372
796
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   373
installAux:: installRCScripts
383
3dfae183631c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 362
diff changeset
   374
796
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   375
installRCScripts::
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   376
	@-echo "installing rc scripts..."
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   377
	$(INSTALL_AUX_CMD) *.rc $(INSTALLLIB_DIR)
001a6508676a Back to V1.101
Stefan Vogel <sv@exept.de>
parents: 788
diff changeset
   378
	$(INSTALL_AUX_CMD) *.xpm $(INSTALLLIB_DIR)
1351
3ef333479676 added rules to generate a dmg (MAC)
Claus Gittinger <cg@exept.de>
parents: 1312
diff changeset
   379
1356
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
#
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   382
# packaging for deployment
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   383
# 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
   384
# 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
   385
#
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   386
deploy:
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   387
	$(MAKE) deploy_$(DEPLOY_PACKAGE)
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   388
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   389
################### begin mac specific #################
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   390
# creates /tmp/stx.dmg
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   391
#
1351
3ef333479676 added rules to generate a dmg (MAC)
Claus Gittinger <cg@exept.de>
parents: 1312
diff changeset
   392
DMG_TMP=/tmp/stx_dmg
3ef333479676 added rules to generate a dmg (MAC)
Claus Gittinger <cg@exept.de>
parents: 1312
diff changeset
   393
1356
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   394
deploy_dmg:
1351
3ef333479676 added rules to generate a dmg (MAC)
Claus Gittinger <cg@exept.de>
parents: 1312
diff changeset
   395
	$(MAKE) newDMG
3ef333479676 added rules to generate a dmg (MAC)
Claus Gittinger <cg@exept.de>
parents: 1312
diff changeset
   396
	$(MAKE) hdUtil
3ef333479676 added rules to generate a dmg (MAC)
Claus Gittinger <cg@exept.de>
parents: 1312
diff changeset
   397
3ef333479676 added rules to generate a dmg (MAC)
Claus Gittinger <cg@exept.de>
parents: 1312
diff changeset
   398
newDMG:
3ef333479676 added rules to generate a dmg (MAC)
Claus Gittinger <cg@exept.de>
parents: 1312
diff changeset
   399
	rm -rf $(DMG_TMP)
3ef333479676 added rules to generate a dmg (MAC)
Claus Gittinger <cg@exept.de>
parents: 1312
diff changeset
   400
	$(MAKE) $(DMG_TMP)
3ef333479676 added rules to generate a dmg (MAC)
Claus Gittinger <cg@exept.de>
parents: 1312
diff changeset
   401
1356
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   402
hdUtil:
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   403
	-rm -f stx.dmg /tmp/stx.dmg
1391
8fafa49d0bf1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1368
diff changeset
   404
	(cd /tmp ; hdiutil create -fs HFSX -layout SPUD "stx.dmg" -srcfolder "$(DMG_TMP)" -format UDRW -volname "stx" -quiet)
1396
a575efc2972a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1395
diff changeset
   405
	sync
a575efc2972a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1395
diff changeset
   406
	sleep 2
1391
8fafa49d0bf1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1368
diff changeset
   407
	$(MAKE) dmg_mount_script
8fafa49d0bf1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1368
diff changeset
   408
	hdiutil convert "/tmp/stx.dmg" -format UDZO -imagekey zlib-level=9 -o "/tmp/stx_cmpr.dmg"
8fafa49d0bf1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1368
diff changeset
   409
	rm /tmp/stx.dmg
8fafa49d0bf1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1368
diff changeset
   410
	mv /tmp/stx_cmpr.dmg /tmp/stx.dmg
1356
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   411
1351
3ef333479676 added rules to generate a dmg (MAC)
Claus Gittinger <cg@exept.de>
parents: 1312
diff changeset
   412
dmg:    $(DMG_TMP)
3ef333479676 added rules to generate a dmg (MAC)
Claus Gittinger <cg@exept.de>
parents: 1312
diff changeset
   413
3ef333479676 added rules to generate a dmg (MAC)
Claus Gittinger <cg@exept.de>
parents: 1312
diff changeset
   414
$(DMG_TMP):
1356
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   415
	-mkdir "$(DMG_TMP)"
1391
8fafa49d0bf1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1368
diff changeset
   416
	(pushd "$(DMG_TMP)"; ln -s /Applications ./Applications; popd)
8fafa49d0bf1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1368
diff changeset
   417
	cp "../../README" "$(DMG_TMP)"/README.txt
8fafa49d0bf1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1368
diff changeset
   418
	cp "../../README.macosx" "$(DMG_TMP)"/README_macosx.txt
8fafa49d0bf1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1368
diff changeset
   419
	sed "s/..\/icons/.background/" < "../../doc/online/english/LICENCE_FREE_STX.html" > "$(DMG_TMP)"/LICENCE_STX.html
8fafa49d0bf1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1368
diff changeset
   420
	-mkdir "$(DMG_TMP)"/.background
8fafa49d0bf1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1368
diff changeset
   421
	cp "../../doc/online/icons/exeptLogo.gif" "$(DMG_TMP)"/.background/exeptLogo.gif
1395
a6cff0a38441 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1394
diff changeset
   422
	cp "banner8_lightMsg.png" "$(DMG_TMP)"/.background/banner.png
1391
8fafa49d0bf1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1368
diff changeset
   423
	cp "../../COPYRIGHT" "$(DMG_TMP)"/COPYRIGHT.txt
1356
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   424
	-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
   425
	-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
   426
	-mkdir "$(DMG_TMP)"/stx.app/Contents/MacOS
1360
a0fa8b75d11f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1357
diff changeset
   427
	$(MAKE) dmgSTXPackages
1351
3ef333479676 added rules to generate a dmg (MAC)
Claus Gittinger <cg@exept.de>
parents: 1312
diff changeset
   428
	$(MAKE) dmgBINContents
1397
84f4931efb5d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1396
diff changeset
   429
	$(MAKE) patchLicenceInResources
84f4931efb5d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1396
diff changeset
   430
84f4931efb5d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1396
diff changeset
   431
patchLicenceInResources:
84f4931efb5d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1396
diff changeset
   432
	LC_ALL=C sed "s/LICENCE_STX/LICENCE_FREE_STX/" < "../../libview/resources/resources.rs" > "$(DMG_TMP)"/stx.app/Packages/stx/libview/resources/resources.rs
84f4931efb5d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1396
diff changeset
   433
	LC_ALL=C sed "s/LICENCE_STX/LICENCE_FREE_STX/" < "../../libview/resources/de.rs" > "$(DMG_TMP)"/stx.app/Packages/stx/libview/resources/de.rs
1351
3ef333479676 added rules to generate a dmg (MAC)
Claus Gittinger <cg@exept.de>
parents: 1312
diff changeset
   434
1391
8fafa49d0bf1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1368
diff changeset
   435
# tell the Finder to resize the window, set the background,
8fafa49d0bf1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1368
diff changeset
   436
#  change the icon size, place the icons in the right position, etc.
8fafa49d0bf1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1368
diff changeset
   437
dmg_mount_script:
1396
a575efc2972a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1395
diff changeset
   438
	sync
1391
8fafa49d0bf1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1368
diff changeset
   439
	hdiutil attach -readwrite -noverify /tmp/stx.dmg
1396
a575efc2972a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1395
diff changeset
   440
	sync
a575efc2972a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1395
diff changeset
   441
	sleep 3
1391
8fafa49d0bf1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1368
diff changeset
   442
	cat ../../rules/macosx_osascript.script | osascript
1396
a575efc2972a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1395
diff changeset
   443
	hdiutil detach /Volumes/stx
a575efc2972a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1395
diff changeset
   444
	sync
1391
8fafa49d0bf1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1368
diff changeset
   445
1351
3ef333479676 added rules to generate a dmg (MAC)
Claus Gittinger <cg@exept.de>
parents: 1312
diff changeset
   446
#
3ef333479676 added rules to generate a dmg (MAC)
Claus Gittinger <cg@exept.de>
parents: 1312
diff changeset
   447
# the actual executable and its binaries
3ef333479676 added rules to generate a dmg (MAC)
Claus Gittinger <cg@exept.de>
parents: 1312
diff changeset
   448
#
3ef333479676 added rules to generate a dmg (MAC)
Claus Gittinger <cg@exept.de>
parents: 1312
diff changeset
   449
dmgBINContents:
1357
2fad3a905583 deploy rule
Claus Gittinger <cg@exept.de>
parents: 1356
diff changeset
   450
	(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
   451
#        (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
   452
#        (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
   453
#        (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
   454
#        (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
   455
#        (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
   456
#        (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
   457
#        (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
   458
#        -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
   459
3ef333479676 added rules to generate a dmg (MAC)
Claus Gittinger <cg@exept.de>
parents: 1312
diff changeset
   460
#
3ef333479676 added rules to generate a dmg (MAC)
Claus Gittinger <cg@exept.de>
parents: 1312
diff changeset
   461
# sources and all other package stuff
3ef333479676 added rules to generate a dmg (MAC)
Claus Gittinger <cg@exept.de>
parents: 1312
diff changeset
   462
#
3ef333479676 added rules to generate a dmg (MAC)
Claus Gittinger <cg@exept.de>
parents: 1312
diff changeset
   463
dmgSTXPackages: "$(DMG_TMP)/stx.app/Packages"
3ef333479676 added rules to generate a dmg (MAC)
Claus Gittinger <cg@exept.de>
parents: 1312
diff changeset
   464
3ef333479676 added rules to generate a dmg (MAC)
Claus Gittinger <cg@exept.de>
parents: 1312
diff changeset
   465
"$(DMG_TMP)/stx.app/Packages":
3ef333479676 added rules to generate a dmg (MAC)
Claus Gittinger <cg@exept.de>
parents: 1312
diff changeset
   466
	@-mkdir "$(DMG_TMP)"
3ef333479676 added rules to generate a dmg (MAC)
Claus Gittinger <cg@exept.de>
parents: 1312
diff changeset
   467
	@-mkdir "$(DMG_TMP)/stx.app"
3ef333479676 added rules to generate a dmg (MAC)
Claus Gittinger <cg@exept.de>
parents: 1312
diff changeset
   468
	@-mkdir "$(DMG_TMP)/stx.app/Packages"
3ef333479676 added rules to generate a dmg (MAC)
Claus Gittinger <cg@exept.de>
parents: 1312
diff changeset
   469
	@-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
   470
	-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
   471
	$(MAKE) clean_dmg
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   472
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   473
clean_dmg:
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="$(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
   475
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   476
################### end of mac 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
################### begin of tgz specific #################
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   479
# creates /tmp/stx.tgz
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
#
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   482
# 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
   483
#
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   484
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
   485
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   486
deploy_tgz:
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   487
	$(MAKE) newTGZ
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   488
	$(MAKE) tarIt
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   489
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   490
tarIt:
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   491
	rm -f stx.tgz
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   492
	(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
   493
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   494
newTGZ:
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   495
	rm -rf $(TGZ_TMP)
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   496
	$(MAKE) $(TGZ_TMP)
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   497
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   498
$(TGZ_TMP):
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   499
	@-mkdir "$(TGZ_TMP)"
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   500
	-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
   501
	$(MAKE) clean_tgz
1351
3ef333479676 added rules to generate a dmg (MAC)
Claus Gittinger <cg@exept.de>
parents: 1312
diff changeset
   502
1356
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   503
clean_tgz:
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   504
	$(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
   505
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   506
################### end of tgz specific #################
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   507
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   508
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   509
################### common #################
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   510
#
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   511
# 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
   512
# 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
   513
# 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
   514
# 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
   515
#
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   516
FIND_PRINT=-print
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   517
#FIND_PRINT=
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   518
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   519
cleanTemporaryDeploymentHierarchy:
1391
8fafa49d0bf1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1368
diff changeset
   520
	$(MAKE) cleanMiscJunk             TMP_TOP=$(TMP_TOP)
1356
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   521
	$(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
   522
	$(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
   523
	$(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
   524
	$(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
   525
#        $(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
   526
	$(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
   527
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   528
cleanArchitectureSpecific:
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   529
	$(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
   530
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   531
cleanStuffNotForArch_macosx:
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   532
	$(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
   533
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   534
cleanStuffNotForArch_linux:
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   535
	$(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
   536
	$(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
   537
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   538
cleanStuffNotForArch_raspian:
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   539
	$(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
   540
	$(MAKE) cleanWindowsSpecific TMP_TOP=$(TMP_TOP)
1351
3ef333479676 added rules to generate a dmg (MAC)
Claus Gittinger <cg@exept.de>
parents: 1312
diff changeset
   541
3ef333479676 added rules to generate a dmg (MAC)
Claus Gittinger <cg@exept.de>
parents: 1312
diff changeset
   542
cleanWindowsSpecific:
1356
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   543
	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
   544
	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
   545
	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
   546
	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
   547
	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
   548
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   549
cleanMacOSXSpecific:
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   550
	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
   551
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   552
cleanObsoleteArchitectureSpecific:
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   553
	$(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
   554
	$(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
   555
	$(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
   556
	$(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
   557
	$(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
   558
	$(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
   559
	$(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
   560
	$(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
   561
	$(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
   562
	$(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
   563
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   564
cleanLinuxAoutOnElfSpecific:
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   565
	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
   566
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   567
cleanFreeBSDSpecific:
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   568
	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
   569
1356
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   570
cleanSunSpecific:
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/configurations/sun
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   572
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   573
cleanSgiSpecific:
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/configurations/sgi
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   575
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   576
cleanNeXTSpecific:
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/configurations/NeXT
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   578
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   579
cleanAixSpecific:
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/configurations/aix
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   581
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   582
cleanDecSpecific:
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   583
	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
   584
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   585
cleanHpSpecific:
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   586
	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
   587
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   588
cleanMotorolaSpecific:
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/configurations/motorola
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   590
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   591
cleanQnxSpecific:
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/configurations/qnx
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   593
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   594
cleanUnixwareSpecific:
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/configurations/unixware
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   596
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   597
#
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   598
# 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
   599
#
1351
3ef333479676 added rules to generate a dmg (MAC)
Claus Gittinger <cg@exept.de>
parents: 1312
diff changeset
   600
cleanUnfinished:
1360
a0fa8b75d11f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1357
diff changeset
   601
	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
   602
	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
   603
	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
   604
	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
   605
	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
   606
	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
   607
	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
   608
	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
   609
	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
   610
	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
   611
	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
   612
	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
   613
	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
   614
	-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
   615
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   616
#
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   617
# 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
   618
#
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   619
cleanObsoleteStuff:
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/librt
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/libsnmp
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/goodies/stx
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/liboracle8
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/support/DLD
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/support/unixware
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/support/db
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/projects/drawtool
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   628
	-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
   629
	-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
   630
	-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
   631
	-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
   632
	-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
   633
1356
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   634
#
1391
8fafa49d0bf1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1368
diff changeset
   635
# stuff noone needs outside expet
8fafa49d0bf1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1368
diff changeset
   636
#
8fafa49d0bf1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1368
diff changeset
   637
cleanMiscJunk:
8fafa49d0bf1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1368
diff changeset
   638
	rm -f "$(TMP_TOP)"/stx/Dockerfile
8fafa49d0bf1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1368
diff changeset
   639
	rm -f "$(TMP_TOP)"/stx/Install.files
8fafa49d0bf1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1368
diff changeset
   640
	rm -f "$(TMP_TOP)"/stx/update.sh
8fafa49d0bf1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1368
diff changeset
   641
	rm -f "$(TMP_TOP)"/stx/TAGS
8fafa49d0bf1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1368
diff changeset
   642
8fafa49d0bf1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1368
diff changeset
   643
#
1356
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   644
# 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
   645
#
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   646
cleanNeverDeliveredStuff:
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   647
	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
   648
	-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
   649
	-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
   650
	-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
   651
	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
   652
	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
   653
	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
   654
	-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
   655
	-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
   656
	-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
   657
	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
   658
	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
   659
	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
   660
	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
   661
	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
   662
	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
   663
	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
   664
	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
   665
	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
   666
	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
   667
	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
   668
	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
   669
	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
   670
	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
   671
	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
   672
	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
   673
	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
   674
	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
   675
	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
   676
	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
   677
	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
   678
	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
   679
	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
   680
	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
   681
	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
   682
	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
   683
	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
   684
	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
   685
	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
   686
	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
   687
	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
   688
	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
   689
	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
   690
	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
   691
	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
   692
	-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
   693
3ef333479676 added rules to generate a dmg (MAC)
Claus Gittinger <cg@exept.de>
parents: 1312
diff changeset
   694
cleanPackages:
1356
1b5c8313260e XWorkstation and GLXWorkstation are no longer built as separate dlls.
Claus Gittinger <cg@exept.de>
parents: 1351
diff changeset
   695
#        (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
   696
	(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
   697
	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
   698
	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
   699
	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
   700
	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
   701
	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
   702
	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
   703
	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
   704
	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
   705
	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
   706
	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
   707
	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
   708
	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
   709
	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
   710
	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
   711
	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
   712
	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
   713
	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
   714
	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
   715
	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
   716
	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
   717
	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
   718
	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
   719
	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
   720
	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
   721
	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
   722
	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
   723
	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
   724
	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
   725
	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
   726
	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
   727
	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
   728
	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
   729
	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
   730
	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
   731
	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
   732
	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
   733
	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
   734
	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
   735
	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
   736
	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
   737
	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
   738
	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
   739
	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
   740
	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
   741
	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
   742
	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
   743
	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
   744
	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
   745
	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
   746
	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
   747
	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
   748
	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
   749
	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
   750
	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
   751
	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
   752
	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
   753
	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
   754
	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
   755
	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
   756
	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
   757
	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
   758
	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
   759
	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
   760
	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
   761
	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
   762
	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
   763
	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
   764
	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
   765
	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
   766
	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
   767
	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
   768
	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
   769
	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
   770
	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
   771
	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
   772
	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
   773
	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
   774
	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
   775
	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
   776
	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
   777
	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
   778
	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
   779
	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
   780
	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
   781
	-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
   782
	-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
   783
	-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
   784
	-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
   785
	-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
   786
	-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
   787
	-find "$(TMP_TOP)"/stx -name ".#*" $(FIND_PRINT) -exec rm -rf {} \;