corba/make/common/shared/Defs-utils.gmk
author ohair
Tue, 09 Sep 2008 15:46:54 -0700
changeset 1196 8004ddea3ea2
parent 4 02bb8761fcce
child 2192 7e916cf3102a
permissions -rw-r--r--
6746424: Remove build dependency on findbugs and FINDBUGS_HOME Reviewed-by: tbell
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
4
02bb8761fcce Initial load
duke
parents:
diff changeset
     1
#
1196
8004ddea3ea2 6746424: Remove build dependency on findbugs and FINDBUGS_HOME
ohair
parents: 4
diff changeset
     2
# Copyright 2005-2008 Sun Microsystems, Inc.  All Rights Reserved.
4
02bb8761fcce Initial load
duke
parents:
diff changeset
     3
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
02bb8761fcce Initial load
duke
parents:
diff changeset
     4
#
02bb8761fcce Initial load
duke
parents:
diff changeset
     5
# This code is free software; you can redistribute it and/or modify it
02bb8761fcce Initial load
duke
parents:
diff changeset
     6
# under the terms of the GNU General Public License version 2 only, as
02bb8761fcce Initial load
duke
parents:
diff changeset
     7
# published by the Free Software Foundation.  Sun designates this
02bb8761fcce Initial load
duke
parents:
diff changeset
     8
# particular file as subject to the "Classpath" exception as provided
02bb8761fcce Initial load
duke
parents:
diff changeset
     9
# by Sun in the LICENSE file that accompanied this code.
02bb8761fcce Initial load
duke
parents:
diff changeset
    10
#
02bb8761fcce Initial load
duke
parents:
diff changeset
    11
# This code is distributed in the hope that it will be useful, but WITHOUT
02bb8761fcce Initial load
duke
parents:
diff changeset
    12
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
02bb8761fcce Initial load
duke
parents:
diff changeset
    13
# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
02bb8761fcce Initial load
duke
parents:
diff changeset
    14
# version 2 for more details (a copy is included in the LICENSE file that
02bb8761fcce Initial load
duke
parents:
diff changeset
    15
# accompanied this code).
02bb8761fcce Initial load
duke
parents:
diff changeset
    16
#
02bb8761fcce Initial load
duke
parents:
diff changeset
    17
# You should have received a copy of the GNU General Public License version
02bb8761fcce Initial load
duke
parents:
diff changeset
    18
# 2 along with this work; if not, write to the Free Software Foundation,
02bb8761fcce Initial load
duke
parents:
diff changeset
    19
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
02bb8761fcce Initial load
duke
parents:
diff changeset
    20
#
02bb8761fcce Initial load
duke
parents:
diff changeset
    21
# Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
02bb8761fcce Initial load
duke
parents:
diff changeset
    22
# CA 95054 USA or visit www.sun.com if you need additional information or
02bb8761fcce Initial load
duke
parents:
diff changeset
    23
# have any questions.
02bb8761fcce Initial load
duke
parents:
diff changeset
    24
#
02bb8761fcce Initial load
duke
parents:
diff changeset
    25
02bb8761fcce Initial load
duke
parents:
diff changeset
    26
#
02bb8761fcce Initial load
duke
parents:
diff changeset
    27
# Shared variables for standard unix utilties on all platforms.
02bb8761fcce Initial load
duke
parents:
diff changeset
    28
#
02bb8761fcce Initial load
duke
parents:
diff changeset
    29
# Assumes Platform.gmk has been included before this file.
02bb8761fcce Initial load
duke
parents:
diff changeset
    30
#
02bb8761fcce Initial load
duke
parents:
diff changeset
    31
# These input UTILS_* variables can be defined at anytime, ideally once.
02bb8761fcce Initial load
duke
parents:
diff changeset
    32
#         Unix Commands: Normally /bin/, /usr/bin/. or C:/mksnt/mksnt/
02bb8761fcce Initial load
duke
parents:
diff changeset
    33
#            UTILS_COMMAND_PATH
02bb8761fcce Initial load
duke
parents:
diff changeset
    34
#         /usr/bin/ 
02bb8761fcce Initial load
duke
parents:
diff changeset
    35
#            UTILS_USR_BIN_PATH
02bb8761fcce Initial load
duke
parents:
diff changeset
    36
#         /usr/ccs/bin/ (sccs, m4, lex, yacc, as, ar, strip, mcs)
02bb8761fcce Initial load
duke
parents:
diff changeset
    37
#            UTILS_CCS_BIN_PATH
02bb8761fcce Initial load
duke
parents:
diff changeset
    38
#         Dev Tools: zip, unzip, etc that we may have special versions of
02bb8761fcce Initial load
duke
parents:
diff changeset
    39
#            UTILS_DEVTOOL_PATH
02bb8761fcce Initial load
duke
parents:
diff changeset
    40
#
02bb8761fcce Initial load
duke
parents:
diff changeset
    41
# WARNING:  This file cannot assume that any of these utilties are available
02bb8761fcce Initial load
duke
parents:
diff changeset
    42
#           to be run via their variable names defined here.
02bb8761fcce Initial load
duke
parents:
diff changeset
    43
#           The paths inside the UTILS_* variables may not be defined yet.
02bb8761fcce Initial load
duke
parents:
diff changeset
    44
#
02bb8761fcce Initial load
duke
parents:
diff changeset
    45
# Note: There is no guarantee that all these exist on all platforms.
02bb8761fcce Initial load
duke
parents:
diff changeset
    46
#       Some only make sense for one platform, but are harmless.
02bb8761fcce Initial load
duke
parents:
diff changeset
    47
#
02bb8761fcce Initial load
duke
parents:
diff changeset
    48
02bb8761fcce Initial load
duke
parents:
diff changeset
    49
ifeq ($(PLATFORM),linux)
02bb8761fcce Initial load
duke
parents:
diff changeset
    50
  UTILS_COMMAND_PATH=$(UNIXCOMMAND_PATH)
02bb8761fcce Initial load
duke
parents:
diff changeset
    51
  UTILS_USR_BIN_PATH=$(USRBIN_PATH)
02bb8761fcce Initial load
duke
parents:
diff changeset
    52
  UTILS_CCS_BIN_PATH=$(USRBIN_PATH)
02bb8761fcce Initial load
duke
parents:
diff changeset
    53
  UTILS_DEVTOOL_PATH=$(USRBIN_PATH)
02bb8761fcce Initial load
duke
parents:
diff changeset
    54
endif
02bb8761fcce Initial load
duke
parents:
diff changeset
    55
02bb8761fcce Initial load
duke
parents:
diff changeset
    56
ifeq ($(PLATFORM),solaris)
02bb8761fcce Initial load
duke
parents:
diff changeset
    57
  UTILS_COMMAND_PATH=$(UNIXCOMMAND_PATH)
02bb8761fcce Initial load
duke
parents:
diff changeset
    58
  UTILS_USR_BIN_PATH=$(UNIXCOMMAND_PATH)
02bb8761fcce Initial load
duke
parents:
diff changeset
    59
  UTILS_CCS_BIN_PATH=$(UNIXCCS_PATH)
02bb8761fcce Initial load
duke
parents:
diff changeset
    60
  UTILS_DEVTOOL_PATH=$(DEVTOOLS_PATH)
02bb8761fcce Initial load
duke
parents:
diff changeset
    61
endif
02bb8761fcce Initial load
duke
parents:
diff changeset
    62
02bb8761fcce Initial load
duke
parents:
diff changeset
    63
ifeq ($(PLATFORM),windows)
02bb8761fcce Initial load
duke
parents:
diff changeset
    64
  UTILS_COMMAND_PATH=$(UNIXCOMMAND_PATH)
02bb8761fcce Initial load
duke
parents:
diff changeset
    65
  UTILS_USR_BIN_PATH=$(UNIXCOMMAND_PATH)
02bb8761fcce Initial load
duke
parents:
diff changeset
    66
  UTILS_CCS_BIN_PATH=$(UNIXCOMMAND_PATH)
02bb8761fcce Initial load
duke
parents:
diff changeset
    67
  UTILS_DEVTOOL_PATH=$(DEVTOOLS_PATH)
02bb8761fcce Initial load
duke
parents:
diff changeset
    68
endif
02bb8761fcce Initial load
duke
parents:
diff changeset
    69
02bb8761fcce Initial load
duke
parents:
diff changeset
    70
# Utilities
02bb8761fcce Initial load
duke
parents:
diff changeset
    71
ADB            = $(UTILS_COMMAND_PATH)adb
02bb8761fcce Initial load
duke
parents:
diff changeset
    72
AR             = $(UTILS_CCS_BIN_PATH)ar
02bb8761fcce Initial load
duke
parents:
diff changeset
    73
AS             = $(UTILS_CCS_BIN_PATH)as
02bb8761fcce Initial load
duke
parents:
diff changeset
    74
BASENAME       = $(UTILS_COMMAND_PATH)basename
02bb8761fcce Initial load
duke
parents:
diff changeset
    75
CAT            = $(UTILS_COMMAND_PATH)cat
02bb8761fcce Initial load
duke
parents:
diff changeset
    76
CHMOD          = $(UTILS_COMMAND_PATH)chmod
02bb8761fcce Initial load
duke
parents:
diff changeset
    77
CMP            = $(UTILS_USR_BIN_PATH)cmp
02bb8761fcce Initial load
duke
parents:
diff changeset
    78
COMM           = $(UTILS_USR_BIN_PATH)comm
02bb8761fcce Initial load
duke
parents:
diff changeset
    79
COMPRESS       = $(UTILS_USR_BIN_PATH)compress
02bb8761fcce Initial load
duke
parents:
diff changeset
    80
CP             = $(UTILS_COMMAND_PATH)cp
02bb8761fcce Initial load
duke
parents:
diff changeset
    81
CPIO           = $(UTILS_COMMAND_PATH)cpio
02bb8761fcce Initial load
duke
parents:
diff changeset
    82
CUT            = $(UTILS_USR_BIN_PATH)cut
02bb8761fcce Initial load
duke
parents:
diff changeset
    83
DATE           = $(UTILS_COMMAND_PATH)date
02bb8761fcce Initial load
duke
parents:
diff changeset
    84
DF             = $(UTILS_COMMAND_PATH)df
02bb8761fcce Initial load
duke
parents:
diff changeset
    85
DIFF           = $(UTILS_USR_BIN_PATH)diff
02bb8761fcce Initial load
duke
parents:
diff changeset
    86
DIRNAME        = $(UTILS_USR_BIN_PATH)dirname
02bb8761fcce Initial load
duke
parents:
diff changeset
    87
ECHO           = $(UTILS_COMMAND_PATH)echo
02bb8761fcce Initial load
duke
parents:
diff changeset
    88
EGREP          = $(UTILS_COMMAND_PATH)egrep
02bb8761fcce Initial load
duke
parents:
diff changeset
    89
EXPR           = $(UTILS_USR_BIN_PATH)expr
02bb8761fcce Initial load
duke
parents:
diff changeset
    90
FILE           = $(UTILS_USR_BIN_PATH)file
02bb8761fcce Initial load
duke
parents:
diff changeset
    91
FIND           = $(UTILS_USR_BIN_PATH)find
02bb8761fcce Initial load
duke
parents:
diff changeset
    92
FMT            = $(UTILS_COMMAND_PATH)fmt
02bb8761fcce Initial load
duke
parents:
diff changeset
    93
GDB            = $(UTILS_USR_BIN_PATH)gdb
02bb8761fcce Initial load
duke
parents:
diff changeset
    94
GREP           = $(UTILS_COMMAND_PATH)grep
02bb8761fcce Initial load
duke
parents:
diff changeset
    95
GUNZIP         = $(UTILS_COMMAND_PATH)gunzip
02bb8761fcce Initial load
duke
parents:
diff changeset
    96
HEAD           = $(UTILS_USR_BIN_PATH)head
02bb8761fcce Initial load
duke
parents:
diff changeset
    97
ID             = $(UTILS_COMMAND_PATH)id
02bb8761fcce Initial load
duke
parents:
diff changeset
    98
ISAINFO        = $(UTILS_COMMAND_PATH)isainfo
02bb8761fcce Initial load
duke
parents:
diff changeset
    99
KSH            = $(UTILS_COMMAND_PATH)ksh
02bb8761fcce Initial load
duke
parents:
diff changeset
   100
LD             = $(UTILS_CCS_BIN_PATH)ld
02bb8761fcce Initial load
duke
parents:
diff changeset
   101
LEX            = $(UTILS_CCS_BIN_PATH)lex
02bb8761fcce Initial load
duke
parents:
diff changeset
   102
LN             = $(UTILS_COMMAND_PATH)ln
02bb8761fcce Initial load
duke
parents:
diff changeset
   103
LS             = $(UTILS_COMMAND_PATH)ls
02bb8761fcce Initial load
duke
parents:
diff changeset
   104
MCS            = $(UTILS_CCS_BIN_PATH)mcs
02bb8761fcce Initial load
duke
parents:
diff changeset
   105
M4             = $(UTILS_CCS_BIN_PATH)m4
02bb8761fcce Initial load
duke
parents:
diff changeset
   106
MKDIR          = $(UTILS_COMMAND_PATH)mkdir
02bb8761fcce Initial load
duke
parents:
diff changeset
   107
MKSINFO        = $(UTILS_COMMAND_PATH)mksinfo
02bb8761fcce Initial load
duke
parents:
diff changeset
   108
MSGFMT         = $(UTILS_USR_BIN_PATH)msgfmt
02bb8761fcce Initial load
duke
parents:
diff changeset
   109
MV             = $(UTILS_COMMAND_PATH)mv
02bb8761fcce Initial load
duke
parents:
diff changeset
   110
NAWK           = $(UTILS_USR_BIN_PATH)nawk
02bb8761fcce Initial load
duke
parents:
diff changeset
   111
NM             = $(UTILS_CCS_BIN_PATH)nm
02bb8761fcce Initial load
duke
parents:
diff changeset
   112
PKGMK          = $(UTILS_COMMAND_PATH)pkgmk
02bb8761fcce Initial load
duke
parents:
diff changeset
   113
PRINTF         = $(UTILS_USR_BIN_PATH)printf
02bb8761fcce Initial load
duke
parents:
diff changeset
   114
PWD            = $(UTILS_COMMAND_PATH)pwd
02bb8761fcce Initial load
duke
parents:
diff changeset
   115
RC             = $(UTILS_COMMAND_PATH)rc
02bb8761fcce Initial load
duke
parents:
diff changeset
   116
RMDIR          = $(UTILS_COMMAND_PATH)rmdir
02bb8761fcce Initial load
duke
parents:
diff changeset
   117
RPM            = $(UTILS_COMMAND_PATH)rpm
02bb8761fcce Initial load
duke
parents:
diff changeset
   118
RPMBUILD       = $(UTILS_COMMAND_PATH)rpmbuild
02bb8761fcce Initial load
duke
parents:
diff changeset
   119
SCCS           = $(UTILS_CCS_BIN_PATH)sccs
02bb8761fcce Initial load
duke
parents:
diff changeset
   120
SED            = $(UTILS_COMMAND_PATH)sed
02bb8761fcce Initial load
duke
parents:
diff changeset
   121
SH             = $(UTILS_COMMAND_PATH)sh
02bb8761fcce Initial load
duke
parents:
diff changeset
   122
SHOWREV        = $(UTILS_USR_BIN_PATH)showrev
02bb8761fcce Initial load
duke
parents:
diff changeset
   123
SORT           = $(UTILS_COMMAND_PATH)sort
02bb8761fcce Initial load
duke
parents:
diff changeset
   124
STRIP          = $(UTILS_CCS_BIN_PATH)strip
02bb8761fcce Initial load
duke
parents:
diff changeset
   125
TAIL           = $(UTILS_USR_BIN_PATH)tail
02bb8761fcce Initial load
duke
parents:
diff changeset
   126
TAR            = $(UTILS_COMMAND_PATH)tar
02bb8761fcce Initial load
duke
parents:
diff changeset
   127
TEST           = $(UTILS_USR_BIN_PATH)test
02bb8761fcce Initial load
duke
parents:
diff changeset
   128
TOUCH          = $(UTILS_COMMAND_PATH)touch
02bb8761fcce Initial load
duke
parents:
diff changeset
   129
TR             = $(UTILS_USR_BIN_PATH)tr
02bb8761fcce Initial load
duke
parents:
diff changeset
   130
TRUE           = $(UTILS_COMMAND_PATH)true
02bb8761fcce Initial load
duke
parents:
diff changeset
   131
UNAME          = $(UTILS_COMMAND_PATH)uname
02bb8761fcce Initial load
duke
parents:
diff changeset
   132
UNIQ           = $(UTILS_USR_BIN_PATH)uniq
02bb8761fcce Initial load
duke
parents:
diff changeset
   133
UNZIP          = $(UTILS_USR_BIN_PATH)unzip
02bb8761fcce Initial load
duke
parents:
diff changeset
   134
UNZIPSFX       = $(UTILS_DEVTOOL_PATH)unzipsfx
02bb8761fcce Initial load
duke
parents:
diff changeset
   135
WC             = $(UTILS_USR_BIN_PATH)wc
02bb8761fcce Initial load
duke
parents:
diff changeset
   136
WHICH          = $(UTILS_USR_BIN_PATH)which
02bb8761fcce Initial load
duke
parents:
diff changeset
   137
YACC           = $(UTILS_CCS_BIN_PATH)yacc
02bb8761fcce Initial load
duke
parents:
diff changeset
   138
ZIPEXE         = $(UTILS_DEVTOOL_PATH)zip
02bb8761fcce Initial load
duke
parents:
diff changeset
   139
02bb8761fcce Initial load
duke
parents:
diff changeset
   140
# Special cases
02bb8761fcce Initial load
duke
parents:
diff changeset
   141
#RM   is defined by GNU Make as 'rm -f'
02bb8761fcce Initial load
duke
parents:
diff changeset
   142
CD             = cd # intrinsic unix command
02bb8761fcce Initial load
duke
parents:
diff changeset
   143
02bb8761fcce Initial load
duke
parents:
diff changeset
   144
# Windows specific
02bb8761fcce Initial load
duke
parents:
diff changeset
   145
ifeq ($(PLATFORM),windows)
02bb8761fcce Initial load
duke
parents:
diff changeset
   146
  ifdef USING_CYGWIN
02bb8761fcce Initial load
duke
parents:
diff changeset
   147
    # Intrinsic unix command, with backslash-escaped character interpretation
02bb8761fcce Initial load
duke
parents:
diff changeset
   148
    ECHO = $(UNIXCOMMAND_PATH)echo -e
02bb8761fcce Initial load
duke
parents:
diff changeset
   149
    ZIPEXE = $(UNIXCOMMAND_PATH)zip
02bb8761fcce Initial load
duke
parents:
diff changeset
   150
    UNZIP  = $(UNIXCOMMAND_PATH)unzip
02bb8761fcce Initial load
duke
parents:
diff changeset
   151
  else
02bb8761fcce Initial load
duke
parents:
diff changeset
   152
    ZIPEXE = $(UTILS_DEVTOOL_PATH)zip
02bb8761fcce Initial load
duke
parents:
diff changeset
   153
    UNZIP  = $(UTILS_DEVTOOL_PATH)unzip
02bb8761fcce Initial load
duke
parents:
diff changeset
   154
  endif
02bb8761fcce Initial load
duke
parents:
diff changeset
   155
  # Re-define some utilities
02bb8761fcce Initial load
duke
parents:
diff changeset
   156
  LEX            =# override GNU Make intrinsic: no lex on windows
02bb8761fcce Initial load
duke
parents:
diff changeset
   157
  NAWK           = $(UNIXCOMMAND_PATH)awk
02bb8761fcce Initial load
duke
parents:
diff changeset
   158
endif
02bb8761fcce Initial load
duke
parents:
diff changeset
   159
02bb8761fcce Initial load
duke
parents:
diff changeset
   160
# Linux specific
02bb8761fcce Initial load
duke
parents:
diff changeset
   161
ifeq ($(PLATFORM),linux)
02bb8761fcce Initial load
duke
parents:
diff changeset
   162
  # A few redefines
02bb8761fcce Initial load
duke
parents:
diff changeset
   163
  # Allows for builds on Debian GNU Linux, basename is in a different place
02bb8761fcce Initial load
duke
parents:
diff changeset
   164
  BASENAME=$(firstword $(wildcard $(UTILS_COMMAND_PATH)basename) \
02bb8761fcce Initial load
duke
parents:
diff changeset
   165
                       $(wildcard $(UTILS_USR_BIN_PATH)basename))
02bb8761fcce Initial load
duke
parents:
diff changeset
   166
  # RPM 4 has replaced "rpm -b" with an entirely new utility "rpmbuild".
02bb8761fcce Initial load
duke
parents:
diff changeset
   167
  # Also, some distribution (Ubuntu, Debian, others?) place the rpm command
02bb8761fcce Initial load
duke
parents:
diff changeset
   168
  # itself in /usr/bin rather than it's traditional home in /bin.
02bb8761fcce Initial load
duke
parents:
diff changeset
   169
  RPM=$(firstword $(wildcard $(UTILS_COMMAND_PATH)rpm) \
02bb8761fcce Initial load
duke
parents:
diff changeset
   170
		  $(wildcard $(UTILS_USR_BIN_PATH)rpm))
02bb8761fcce Initial load
duke
parents:
diff changeset
   171
  RPMBUILD=$(firstword $(wildcard $(UTILS_COMMAND_PATH)rpmbuild) \
02bb8761fcce Initial load
duke
parents:
diff changeset
   172
		       $(wildcard $(UTILS_USR_BIN_PATH)rpmbuild) \
02bb8761fcce Initial load
duke
parents:
diff changeset
   173
		       $(wildcard $(UTILS_COMMAND_PATH)rpm) \
02bb8761fcce Initial load
duke
parents:
diff changeset
   174
		       $(wildcard $(UTILS_USR_BIN_PATH)rpm))
02bb8761fcce Initial load
duke
parents:
diff changeset
   175
  # Most Linux distros have "sort" in /bin.  Ubuntu, Debian and perhaps
02bb8761fcce Initial load
duke
parents:
diff changeset
   176
  # others have it in /usr/bin.
02bb8761fcce Initial load
duke
parents:
diff changeset
   177
  SORT=$(firstword $(wildcard $(UTILS_COMMAND_PATH)sort) \
02bb8761fcce Initial load
duke
parents:
diff changeset
   178
		   $(wildcard $(UTILS_USR_BIN_PATH)sort))
02bb8761fcce Initial load
duke
parents:
diff changeset
   179
  NAWK           = $(USRBIN_PATH)gawk
02bb8761fcce Initial load
duke
parents:
diff changeset
   180
  # Intrinsic unix command, with backslash-escaped character interpretation
02bb8761fcce Initial load
duke
parents:
diff changeset
   181
  ECHO           = /bin/echo -e
02bb8761fcce Initial load
duke
parents:
diff changeset
   182
  # These are really in UTILS_USR_BIN_PATH on Linux (only sccs is not)
02bb8761fcce Initial load
duke
parents:
diff changeset
   183
  AR             = $(UTILS_USR_BIN_PATH)ar
02bb8761fcce Initial load
duke
parents:
diff changeset
   184
  AS             = $(UTILS_USR_BIN_PATH)as
02bb8761fcce Initial load
duke
parents:
diff changeset
   185
  LD             = $(UTILS_USR_BIN_PATH)ld
02bb8761fcce Initial load
duke
parents:
diff changeset
   186
  LEX            = $(UTILS_USR_BIN_PATH)lex
02bb8761fcce Initial load
duke
parents:
diff changeset
   187
  MCS            = $(UTILS_USR_BIN_PATH)mcs
02bb8761fcce Initial load
duke
parents:
diff changeset
   188
  M4             = $(UTILS_USR_BIN_PATH)m4
02bb8761fcce Initial load
duke
parents:
diff changeset
   189
  NM             = $(UTILS_USR_BIN_PATH)nm
02bb8761fcce Initial load
duke
parents:
diff changeset
   190
  STRIP          = $(UTILS_USR_BIN_PATH)strip
02bb8761fcce Initial load
duke
parents:
diff changeset
   191
  YACC           = $(UTILS_USR_BIN_PATH)yacc
02bb8761fcce Initial load
duke
parents:
diff changeset
   192
endif
02bb8761fcce Initial load
duke
parents:
diff changeset
   193
02bb8761fcce Initial load
duke
parents:
diff changeset
   194
# Solaris specific
02bb8761fcce Initial load
duke
parents:
diff changeset
   195
ifeq ($(PLATFORM),solaris)
02bb8761fcce Initial load
duke
parents:
diff changeset
   196
  # Intrinsic unix command, with backslash-escaped character interpretation
02bb8761fcce Initial load
duke
parents:
diff changeset
   197
  #   (not using -e  will cause build failure when using /bin/bash)
02bb8761fcce Initial load
duke
parents:
diff changeset
   198
  #   (using -e breaks something else)
02bb8761fcce Initial load
duke
parents:
diff changeset
   199
  ECHO           = /usr/bin/echo
02bb8761fcce Initial load
duke
parents:
diff changeset
   200
endif
02bb8761fcce Initial load
duke
parents:
diff changeset
   201