View | Details | Raw Unified | Return to issue 7811
Collapse All | Expand All

(-)zipped/makefile.mk (-3 / +9 lines)
Lines 71-82 Link Here
71
71
72
# --- Files --------------------------------------------------------
72
# --- Files --------------------------------------------------------
73
73
74
.IF "$(OS)" == "MACOSX"
74
# MacOSX Hack!
75
# Until gcc3 versions of the Mozilla runtime libraries are available
76
# this hack must exist to stop the wrong version of these libraries
77
# being delivered.
78
# Note: At some point in the future versioning of these ZIP files
79
# must occur
80
.IF "$(OS)$(CVER)" == "MACOSXC300" 
75
81
76
dummy:
82
dummy:
77
	@echo "Nothing to build for OS $(OS)"
83
	@echo "Nothing to build for OS $(OS)"
78
84
79
.ELSE	"$(OS)" == "MACOSX"
85
.ELSE	#"$(OS)$(CVER)" == "MACOSXC300"
80
86
81
all: \
87
all: \
82
	$(MISC)$/unpacked_$(TARGET)_inc \
88
	$(MISC)$/unpacked_$(TARGET)_inc \
Lines 107-113 Link Here
107
$(BIN)$/mozruntime.zip : $(OS)$(COM)$(CPU)runtime.zip
113
$(BIN)$/mozruntime.zip : $(OS)$(COM)$(CPU)runtime.zip
108
	+$(COPY) $(OS)$(COM)$(CPU)runtime.zip $(BIN)$/mozruntime.zip
114
	+$(COPY) $(OS)$(COM)$(CPU)runtime.zip $(BIN)$/mozruntime.zip
109
115
110
.ENDIF	# "$(OS)" == "MACOSX"
116
.ENDIF	# "$(OS)$(CVER)" == "MACOSXC300"
111
117
112
.INCLUDE :  target.mk
118
.INCLUDE :  target.mk
113
119

Return to issue 7811