2000-10-29 23:00:05 -06:00
|
|
|
#*************************************************************************
|
|
|
|
#
|
2005-09-08 03:50:38 -05:00
|
|
|
# OpenOffice.org - a multi-platform office productivity suite
|
2000-10-29 23:00:05 -06:00
|
|
|
#
|
2005-09-08 03:50:38 -05:00
|
|
|
# $RCSfile: unitools.mk,v $
|
2000-10-29 23:00:05 -06:00
|
|
|
#
|
2005-09-08 03:50:38 -05:00
|
|
|
# $Revision: 1.42 $
|
2000-10-29 23:00:05 -06:00
|
|
|
#
|
2005-09-08 03:50:38 -05:00
|
|
|
# last change: $Author: rt $ $Date: 2005-09-08 09:50:38 $
|
2000-10-29 23:00:05 -06:00
|
|
|
#
|
2005-09-08 03:50:38 -05:00
|
|
|
# The Contents of this file are made available subject to
|
|
|
|
# the terms of GNU Lesser General Public License Version 2.1.
|
2000-10-29 23:00:05 -06:00
|
|
|
#
|
|
|
|
#
|
2005-09-08 03:50:38 -05:00
|
|
|
# GNU Lesser General Public License Version 2.1
|
|
|
|
# =============================================
|
|
|
|
# Copyright 2005 by Sun Microsystems, Inc.
|
|
|
|
# 901 San Antonio Road, Palo Alto, CA 94303, USA
|
2000-10-29 23:00:05 -06:00
|
|
|
#
|
2005-09-08 03:50:38 -05:00
|
|
|
# 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.
|
2000-10-29 23:00:05 -06:00
|
|
|
#
|
2005-09-08 03:50:38 -05:00
|
|
|
# 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.
|
2000-10-29 23:00:05 -06:00
|
|
|
#
|
2005-09-08 03:50:38 -05:00
|
|
|
# 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
|
2000-10-29 23:00:05 -06:00
|
|
|
#
|
|
|
|
#*************************************************************************
|
2005-03-18 03:15:12 -06:00
|
|
|
|
2004-09-08 08:59:14 -05:00
|
|
|
# Common tools
|
|
|
|
TRANSEX*=transex3
|
|
|
|
ULFEX*=ulfex
|
|
|
|
XMLEX*=xmlex
|
|
|
|
XRMEX*=xrmex
|
|
|
|
CFGEX*=cfgex
|
|
|
|
|
2004-10-18 07:56:17 -05:00
|
|
|
ULFCONV*=ulfconv
|
|
|
|
|
2005-03-18 03:15:12 -06:00
|
|
|
MAKEDEPEND*=$(WRAPCMD) $(SOLARBINDIR)$/makedepend
|
|
|
|
|
|
|
|
EXECTEST:= $(PERL) -w $(SOLARENV)$/bin$/exectest.pl
|
|
|
|
|
|
|
|
SCP_CHECK_TOOL:=checkscp$E
|
|
|
|
|
2004-09-09 05:19:31 -05:00
|
|
|
# Not 4nt means $(GUI)==UNX or $(GUI)==WNT with tcsh
|
|
|
|
.IF "$(USE_SHELL)"!="4nt"
|
|
|
|
# iz32110: Calling a cygwin application from a non-cygwin shell requires
|
|
|
|
# backslashes to be escaped by another backslash: EES .. extra escape slash
|
2005-03-18 03:15:12 -06:00
|
|
|
EES:=
|
|
|
|
|
|
|
|
# iz29675: 4nt must not quote special characters, but tcsh has to.
|
|
|
|
# *NIX shells needs to use " quotes, but 4nt must not.
|
|
|
|
# EMQ .. extra meta quote (\\ at line end is \)
|
|
|
|
# USQ .. unix shell quote
|
|
|
|
EMQ:=\\
|
|
|
|
USQ:="
|
|
|
|
|
|
|
|
NULLDEV:=/dev/null
|
|
|
|
|
|
|
|
# iz29609 helpmacro to check if file exists tcsh style
|
|
|
|
IFEXIST:=if ( -e
|
|
|
|
THEN:= )
|
|
|
|
|
|
|
|
# iz31658
|
2005-09-07 10:09:47 -05:00
|
|
|
CHECKZIPRESULT:=|| if ("$$status" != "12" && "$$status" != "1") exit $$status && echo "Nothing to update for zip"
|
2005-03-18 03:15:12 -06:00
|
|
|
|
|
|
|
.ELSE # "$(USE_SHELL)"!="4nt"
|
|
|
|
# (\\ at line end is \)
|
|
|
|
EES:=\\
|
|
|
|
|
|
|
|
EMQ:=
|
|
|
|
USQ:=
|
2004-09-09 05:19:31 -05:00
|
|
|
|
2005-03-18 03:15:12 -06:00
|
|
|
NULLDEV:=nul
|
|
|
|
|
|
|
|
# iz29609 helpmacro to check if file exists 4nt style
|
|
|
|
IFEXIST:=if exist
|
|
|
|
THEN:=
|
|
|
|
|
|
|
|
# iz31658
|
2005-09-07 10:09:47 -05:00
|
|
|
CHECKZIPRESULT:=^ iff errorlevel == 12 .and. errorlevel == 12 then ( echo Nothing to update for zip ^ set somedummyvar=%somedummyvar)
|
2005-03-18 03:15:12 -06:00
|
|
|
|
|
|
|
.ENDIF # "$(USE_SHELL)"!="4nt"
|
|
|
|
|
|
|
|
# Platform specific
|
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"
|
2004-07-13 10:30:07 -05:00
|
|
|
# change drive and directory
|
2004-07-16 07:14:42 -05:00
|
|
|
CDD=cd
|
2002-03-14 05:46:17 -06:00
|
|
|
# expect cygwin tools to exist
|
|
|
|
COPY*=cp
|
|
|
|
COPYRECURSE=-r
|
|
|
|
COPYUPDATE=-u
|
2004-09-20 02:36:28 -05:00
|
|
|
DELAY=sleep
|
2002-03-14 05:46:17 -06:00
|
|
|
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"
|
2004-07-16 07:14:42 -05:00
|
|
|
CDD=cdd
|
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
|
2004-09-20 02:36:28 -05:00
|
|
|
DELAY=delay
|
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)
|
2004-08-23 03:18:39 -05:00
|
|
|
DUMPBIN*=$(WRAPCMD) dumpbin
|
2001-04-06 08:27:08 -05:00
|
|
|
|
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
|
2005-03-18 09:40:05 -06:00
|
|
|
PERL*=perl
|
2000-09-20 08:43:26 -05:00
|
|
|
TYPE=cat
|
2004-07-13 10:30:07 -05:00
|
|
|
CDD=cd
|
2000-09-20 08:43:26 -05:00
|
|
|
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
|
|
|
|
|
|
|
RM+=$(RMFLAGS)
|
2005-08-18 06:04:35 -05:00
|
|
|
ADJUSTVISIBILITY*:=$(WRAPCMD) adjustvisibility
|
|
|
|
CONVERT*:=$(PERL) $(SOLARENV)$/bin$/leconvert.pl
|
|
|
|
|