2000-10-29 23:00:05 -06:00
|
|
|
#*************************************************************************
|
|
|
|
#
|
|
|
|
# $RCSfile: unitools.mk,v $
|
|
|
|
#
|
2004-03-29 03:47:56 -06:00
|
|
|
# $Revision: 1.25 $
|
2000-10-29 23:00:05 -06:00
|
|
|
#
|
2004-03-29 03:47:56 -06:00
|
|
|
# last change: $Author: kz $ $Date: 2004-03-29 10:47:56 $
|
2000-10-29 23:00:05 -06:00
|
|
|
#
|
|
|
|
# The Contents of this file are made available subject to the terms of
|
|
|
|
# either of the following licenses
|
|
|
|
#
|
|
|
|
# - GNU Lesser General Public License Version 2.1
|
|
|
|
# - Sun Industry Standards Source License Version 1.1
|
|
|
|
#
|
|
|
|
# Sun Microsystems Inc., October, 2000
|
|
|
|
#
|
|
|
|
# GNU Lesser General Public License Version 2.1
|
|
|
|
# =============================================
|
|
|
|
# Copyright 2000 by Sun Microsystems, Inc.
|
|
|
|
# 901 San Antonio Road, Palo Alto, CA 94303, USA
|
|
|
|
#
|
|
|
|
# This library is free software; you can redistribute it and/or
|
|
|
|
# modify it under the terms of the GNU Lesser General Public
|
|
|
|
# License version 2.1, as published by the Free Software Foundation.
|
|
|
|
#
|
|
|
|
# This library is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
# Lesser General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU Lesser General Public
|
|
|
|
# License along with this library; if not, write to the Free Software
|
|
|
|
# Foundation, Inc., 59 Temple Place, Suite 330, Boston,
|
|
|
|
# MA 02111-1307 USA
|
|
|
|
#
|
|
|
|
#
|
|
|
|
# Sun Industry Standards Source License Version 1.1
|
|
|
|
# =================================================
|
|
|
|
# The contents of this file are subject to the Sun Industry Standards
|
|
|
|
# Source License Version 1.1 (the "License"); You may not use this file
|
|
|
|
# except in compliance with the License. You may obtain a copy of the
|
|
|
|
# License at http://www.openoffice.org/license.html.
|
|
|
|
#
|
|
|
|
# Software provided under this License is provided on an "AS IS" basis,
|
|
|
|
# WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING,
|
|
|
|
# WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS,
|
|
|
|
# MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING.
|
|
|
|
# See the License for the specific provisions governing your rights and
|
|
|
|
# obligations concerning the Software.
|
|
|
|
#
|
|
|
|
# The Initial Developer of the Original Code is: Sun Microsystems, Inc.
|
|
|
|
#
|
|
|
|
# Copyright: 2000 by Sun Microsystems, Inc.
|
|
|
|
#
|
|
|
|
# All Rights Reserved.
|
|
|
|
#
|
|
|
|
# Contributor(s): _______________________________________
|
|
|
|
#
|
|
|
|
#
|
|
|
|
#
|
|
|
|
#*************************************************************************
|
2003-04-01 06:34:43 -06:00
|
|
|
.IF "$(GUI)"=="WNT"
|
2000-10-11 09:01:18 -05:00
|
|
|
AWK*=awk
|
2001-11-15 09:11:34 -06:00
|
|
|
SORT*=sort
|
2000-09-20 08:43:26 -05:00
|
|
|
SED*=sed
|
2002-03-19 11:11:17 -06:00
|
|
|
.IF "$(USE_SHELL)"!="4nt"
|
2002-03-14 05:46:17 -06:00
|
|
|
# expect cygwin tools to exist
|
|
|
|
COPY*=cp
|
|
|
|
COPYRECURSE=-r
|
|
|
|
COPYUPDATE=-u
|
|
|
|
ECHON=echo -n
|
|
|
|
ECHONL=echo
|
|
|
|
FIND*=find
|
|
|
|
GNUCOPY*=cp
|
|
|
|
GNUMAKE*=make
|
|
|
|
GREP*=grep
|
|
|
|
LS*=ls
|
|
|
|
MKDIR*=mkdir.pl
|
|
|
|
PERL*:=perl
|
|
|
|
RENAME*=mv
|
|
|
|
TOUCH*=touch
|
|
|
|
TYPE*=cat
|
2003-04-01 06:34:43 -06:00
|
|
|
.ELSE # "$(USE_SHELL)"!="4nt"
|
2000-10-11 09:01:18 -05:00
|
|
|
COPY*=copy
|
2001-06-22 10:06:10 -05:00
|
|
|
COPYRECURSE=/s
|
2002-03-14 05:46:17 -06:00
|
|
|
COPYUPDATE=/u
|
2000-10-11 09:01:18 -05:00
|
|
|
ECHON*=echos
|
2002-03-14 05:46:17 -06:00
|
|
|
ECHONL=echo.
|
2000-10-11 09:01:18 -05:00
|
|
|
FIND*=$(BUILD_TOOLS)$/find.exe
|
2004-03-29 03:47:56 -06:00
|
|
|
.IF "$(use_cygcp)"!=""
|
2004-03-02 04:33:23 -06:00
|
|
|
GNUCOPY=$(BUILD_TOOLS)$/gnucp.exe
|
2004-03-29 03:47:56 -06:00
|
|
|
.ENDIF # "$(use_cygcp)"!=""
|
2000-10-11 09:01:18 -05:00
|
|
|
GNUCOPY*=$(BUILD_TOOLS)$/cp.exe
|
2001-06-22 10:06:10 -05:00
|
|
|
GNUMAKE*=$(ENV_TOOLS)$/gnumake.exe
|
2002-03-14 05:46:17 -06:00
|
|
|
GREP*=$(ENV_TOOLS)$/grep32.exe
|
|
|
|
LS*=$(BUILD_TOOLS)$/ls.exe
|
2000-10-10 11:57:58 -05:00
|
|
|
#wraper for solenv\bin\mkdir.pl to fix mkdir /p problem
|
2000-10-13 03:01:07 -05:00
|
|
|
MKDIR=+$(SOLARENV)$/bin$/mkdir.btm
|
2001-09-21 10:45:47 -05:00
|
|
|
PERL*:=call perl5.btm
|
2002-03-14 05:46:17 -06:00
|
|
|
RENAME*=ren
|
|
|
|
TOUCH*=$(BUILD_TOOLS)$/touch.exe
|
|
|
|
TYPE*=type
|
2003-04-01 06:34:43 -06:00
|
|
|
.ENDIF "$(USE_SHELL)"!="4nt"
|
2002-03-14 05:46:17 -06:00
|
|
|
MKDIRHIER=$(MKDIR)
|
2001-04-06 08:27:08 -05:00
|
|
|
SCP_CHECK_TOOL=checkscp.exe
|
|
|
|
|
2003-04-01 06:34:43 -06:00
|
|
|
.ELIF "$(GUI)"=="UNX" # "$(GUI)"=="WNT"
|
2000-09-20 08:43:26 -05:00
|
|
|
SED*=sed
|
2001-11-15 09:11:34 -06:00
|
|
|
SORT*=sort
|
2000-09-20 08:43:26 -05:00
|
|
|
PERL=perl
|
|
|
|
TYPE=cat
|
|
|
|
COPY=cp -f
|
2001-06-22 10:06:10 -05:00
|
|
|
COPYRECURSE=-r
|
2000-09-20 08:43:26 -05:00
|
|
|
.IF "$(OS)"=="SOLARIS"
|
2003-06-04 04:40:46 -05:00
|
|
|
AWK*=nawk
|
2003-07-16 12:21:03 -05:00
|
|
|
GNUCOPY*=gnucp
|
|
|
|
GNUPATCH*=gnupatch
|
2000-09-20 08:43:26 -05:00
|
|
|
.ELSE # "$(OS)"=="SOLARIS"
|
2003-06-04 04:40:46 -05:00
|
|
|
AWK*=awk
|
2003-12-17 11:07:06 -06:00
|
|
|
GNUCOPY*=cp
|
|
|
|
GNUPATCH*=patch
|
2000-09-20 08:43:26 -05:00
|
|
|
.ENDIF # "$(OS)"=="SOLARIS"
|
2002-06-07 08:01:43 -05:00
|
|
|
.IF "$(OS)"=="LINUX" || "$(OS)"=="MACOSX"
|
2002-11-04 11:10:43 -06:00
|
|
|
GNUMAKE*=make
|
2002-06-07 08:01:43 -05:00
|
|
|
.ELSE # "$(OS)"=="LINUX" || "$(OS)"=="MACOSX"
|
2002-11-04 11:10:43 -06:00
|
|
|
GNUMAKE*=gmake
|
2002-06-07 08:01:43 -05:00
|
|
|
.ENDIF # "$(OS)"=="LINUX" || "$(OS)"=="MACOSX"
|
2000-09-20 08:43:26 -05:00
|
|
|
TOUCH=touch
|
|
|
|
RENAME=mv
|
|
|
|
MKDIR=mkdir
|
|
|
|
MKDIRHIER=mkdir -p
|
|
|
|
GREP=grep
|
|
|
|
FIND=find
|
|
|
|
LS=ls
|
|
|
|
ECHON=echo -n
|
2002-03-14 05:46:17 -06:00
|
|
|
ECHONL=echo
|
2003-04-01 06:34:43 -06:00
|
|
|
.ENDIF # "$(GUI)"=="UNX"
|
2000-09-20 08:43:26 -05:00
|
|
|
|
2002-11-04 11:10:43 -06:00
|
|
|
MAKEDEPEND*=$(WRAPCMD) makedepend
|
2002-01-08 04:58:56 -06:00
|
|
|
|
2000-09-20 08:43:26 -05:00
|
|
|
RM+=$(RMFLAGS)
|
|
|
|
|
|
|
|
.IF "$(GUI)"=="UNX"
|
2001-04-06 08:27:08 -05:00
|
|
|
SCP_CHECK_TOOL=checkscp
|
2000-09-20 08:43:26 -05:00
|
|
|
NULLDEV=/dev/null
|
2003-04-01 06:34:43 -06:00
|
|
|
.ELIF "$(GUI)"=="WNT"
|
|
|
|
.IF "$(USE_SHELL)"!="4nt"
|
2000-09-20 08:43:26 -05:00
|
|
|
NULLDEV=/dev/null
|
|
|
|
.ELSE
|
|
|
|
NULLDEV=nul
|
|
|
|
.ENDIF
|
2003-04-01 06:34:43 -06:00
|
|
|
.ENDIF
|
2000-09-20 08:43:26 -05:00
|
|
|
|