diff options
author | Hans-Joachim Lankenau <hjs@openoffice.org> | 2001-06-22 15:06:10 +0000 |
---|---|---|
committer | Hans-Joachim Lankenau <hjs@openoffice.org> | 2001-06-22 15:06:10 +0000 |
commit | fb59c26b24eb34a1b1ac63016a634670db76c855 (patch) | |
tree | eb3de7d0651e61aa8400de189057d5629c2fbb75 /solenv/inc/unitools.mk | |
parent | d1aa8c01ffdb2b614a6546fc179e37befb4a562f (diff) |
add variables for copy recursive flag and gnumake
Diffstat (limited to 'solenv/inc/unitools.mk')
-rw-r--r-- | solenv/inc/unitools.mk | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/solenv/inc/unitools.mk b/solenv/inc/unitools.mk index 23597fe86bd4..4756365392e8 100644 --- a/solenv/inc/unitools.mk +++ b/solenv/inc/unitools.mk @@ -2,9 +2,9 @@ # # $RCSfile: unitools.mk,v $ # -# $Revision: 1.7 $ +# $Revision: 1.8 $ # -# last change: $Author: obo $ $Date: 2001-04-06 14:27:08 $ +# last change: $Author: hjs $ $Date: 2001-06-22 16:06:10 $ # # The Contents of this file are made available subject to the terms of # either of the following licenses @@ -67,6 +67,7 @@ TYPE*=type RENAME*=ren COPY*=copy COPYUPDATE=/u +COPYRECURSE=/s MKDIR*=mkdir MKDIRHIER=$(MKDIR) ECHON*=echos @@ -80,6 +81,7 @@ GREP*=$(ENV_TOOLS)$/grep32.exe FIND*=$(BUILD_TOOLS)$/find.exe LS*=$(BUILD_TOOLS)$/ls.exe GNUCOPY*=$(BUILD_TOOLS)$/cp.exe +GNUMAKE*=$(ENV_TOOLS)$/gnumake.exe #wraper for solenv\bin\mkdir.pl to fix mkdir /p problem MKDIR=+$(SOLARENV)$/bin$/mkdir.btm TOUCH*=$(BUILD_TOOLS)$/touch.exe @@ -104,6 +106,7 @@ AWK=awk PERL=perl TYPE=cat COPY=cp -f +COPYRECURSE=-r GNUCOPY=cp TOUCH=touch RENAME=mv @@ -120,11 +123,17 @@ AWK=awk PERL=perl TYPE=cat COPY=cp -f +COPYRECURSE=-r .IF "$(OS)"=="SOLARIS" GNUCOPY=gnucp .ELSE # "$(OS)"=="SOLARIS" GNUCOPY=cp .ENDIF # "$(OS)"=="SOLARIS" +.IF "$(OS)"=="LINUX" +GNUMAKE=make +.ELSE # "$(OS)"=="SOLARIS" +GNUMAKE=gmake +.ENDIF # "$(OS)"=="SOLARIS" TOUCH=touch RENAME=mv MKDIR=mkdir |