diff options
author | Frank Schönheit <fs@openoffice.org> | 2001-06-21 15:55:32 +0000 |
---|---|---|
committer | Frank Schönheit <fs@openoffice.org> | 2001-06-21 15:55:32 +0000 |
commit | 86cb7adae34935b8648e3d108cf650665e6a2932 (patch) | |
tree | 3adf3c585895a1a94a00554cda5dec9e0da06528 /moz/zipped | |
parent | da1a24df1ab1db7a75462e7f1ea420f05bc213bc (diff) |
#88326# under ~NIX systems, extract the runtime lib to be delivered, too (our build process needs a lib without unresolveds
Diffstat (limited to 'moz/zipped')
-rw-r--r-- | moz/zipped/makefile.mk | 16 |
1 files changed, 13 insertions, 3 deletions
diff --git a/moz/zipped/makefile.mk b/moz/zipped/makefile.mk index dd31e5b3155d..338f574b8b47 100644 --- a/moz/zipped/makefile.mk +++ b/moz/zipped/makefile.mk @@ -2,9 +2,9 @@ # # $RCSfile: makefile.mk,v $ # -# $Revision: 1.2 $ +# $Revision: 1.3 $ # -# last change: $Author: fs $ $Date: 2001-06-21 08:18:25 $ +# last change: $Author: fs $ $Date: 2001-06-21 16:55:32 $ # # The Contents of this file are made available subject to the terms of # either of the following licenses @@ -76,8 +76,18 @@ all: \ $(MISC)$/unpacked_$(TARGET)_lib \ $(BIN)$/mozruntime.zip +.IF "$(GUI)" == "UNX" + $(MISC)$/unpacked_$(TARGET)_lib : $(OS)$(COM)lib.zip - +unzip -o -d $(LB) $(OS)$(COM)lib.zip && $(TOUCH) $@ + +unzip -o -d $(LB) $(OS)$(COM)lib.zip && unzip -o -d $(LB) $(OS)$(COM)runtime.zip && $(TOUCH) $@ + +.ELSE + +$(MISC)$/unpacked_$(TARGET)_lib : $(OS)$(COM)lib.zip + +unzip -o -d $(LB) $(OS)$(COM)lib.zip && \ + $(TOUCH) $@ + +.ENDIF $(MISC)$/unpacked_$(TARGET)_inc : $(OS)$(COM)inc.zip +unzip -o -d $(INCCOM) $(OS)$(COM)inc.zip && $(TOUCH) $@ |