diff options
author | Frank Schönheit <fs@openoffice.org> | 2001-07-19 11:00:52 +0000 |
---|---|---|
committer | Frank Schönheit <fs@openoffice.org> | 2001-07-19 11:00:52 +0000 |
commit | d18cd9c4b9af6e0ab20a6d4f74729cb54e418bed (patch) | |
tree | 3534de6c2811a6142fbaa28f482163a88e01c49a /moz/zipped | |
parent | 86cb7adae34935b8648e3d108cf650665e6a2932 (diff) |
#89219# change the file names so that they contain the CPU id
Diffstat (limited to 'moz/zipped')
-rw-r--r-- | moz/zipped/makefile.mk | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/moz/zipped/makefile.mk b/moz/zipped/makefile.mk index 338f574b8b47..bd368a6f5e21 100644 --- a/moz/zipped/makefile.mk +++ b/moz/zipped/makefile.mk @@ -2,9 +2,9 @@ # # $RCSfile: makefile.mk,v $ # -# $Revision: 1.3 $ +# $Revision: 1.4 $ # -# last change: $Author: fs $ $Date: 2001-06-21 16:55:32 $ +# last change: $Author: fs $ $Date: 2001-07-19 12:00:52 $ # # The Contents of this file are made available subject to the terms of # either of the following licenses @@ -78,22 +78,22 @@ all: \ .IF "$(GUI)" == "UNX" -$(MISC)$/unpacked_$(TARGET)_lib : $(OS)$(COM)lib.zip - +unzip -o -d $(LB) $(OS)$(COM)lib.zip && unzip -o -d $(LB) $(OS)$(COM)runtime.zip && $(TOUCH) $@ +$(MISC)$/unpacked_$(TARGET)_lib : $(OS)$(COM)$(CPU)lib.zip + +unzip -o -d $(LB) $(OS)$(COM)$(CPU)lib.zip && unzip -o -d $(LB) $(OS)$(COM)$(CPU)runtime.zip && $(TOUCH) $@ .ELSE -$(MISC)$/unpacked_$(TARGET)_lib : $(OS)$(COM)lib.zip - +unzip -o -d $(LB) $(OS)$(COM)lib.zip && \ +$(MISC)$/unpacked_$(TARGET)_lib : $(OS)$(COM)$(CPU)lib.zip + +unzip -o -d $(LB) $(OS)$(COM)$(CPU)lib.zip && \ $(TOUCH) $@ .ENDIF -$(MISC)$/unpacked_$(TARGET)_inc : $(OS)$(COM)inc.zip - +unzip -o -d $(INCCOM) $(OS)$(COM)inc.zip && $(TOUCH) $@ +$(MISC)$/unpacked_$(TARGET)_inc : $(OS)$(COM)$(CPU)inc.zip + +unzip -o -d $(INCCOM) $(OS)$(COM)$(CPU)inc.zip && $(TOUCH) $@ -$(BIN)$/mozruntime.zip : $(OS)$(COM)runtime.zip - +$(COPY) $(OS)$(COM)runtime.zip $(BIN)$/mozruntime.zip +$(BIN)$/mozruntime.zip : $(OS)$(COM)$(CPU)runtime.zip + +$(COPY) $(OS)$(COM)$(CPU)runtime.zip $(BIN)$/mozruntime.zip .INCLUDE : target.mk |