makefile.mk (1439c24f) makefile.mk (595ef848)
1#*************************************************************************
2#
3# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4#
5# Copyright 2000, 2010 Oracle and/or its affiliates.
6#
7# OpenOffice.org - a multi-platform office productivity suite
8#

--- 77 unchanged lines hidden (view full) ---

86
87OUT2LIB=mozilla$/dist$/out$/lib$/*$(DLLPOST)
88
89BUILD_DIR=mozilla$/security$/nss
90BUILD_ACTION= $(GNUMAKE) nss_build_all
91#See #i105566# && moz#513024#
92.IF "$(OS)"=="LINUX"
93BUILD_ACTION+=FREEBL_NO_DEPEND=1
1#*************************************************************************
2#
3# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4#
5# Copyright 2000, 2010 Oracle and/or its affiliates.
6#
7# OpenOffice.org - a multi-platform office productivity suite
8#

--- 77 unchanged lines hidden (view full) ---

86
87OUT2LIB=mozilla$/dist$/out$/lib$/*$(DLLPOST)
88
89BUILD_DIR=mozilla$/security$/nss
90BUILD_ACTION= $(GNUMAKE) nss_build_all
91#See #i105566# && moz#513024#
92.IF "$(OS)"=="LINUX"
93BUILD_ACTION+=FREEBL_NO_DEPEND=1
94PATCH_FILES+=nss_linux.patch
94.ENDIF
95
96.ENDIF # "$(GUI)"=="UNX"
97
98
99.IF "$(GUI)"=="WNT"
100
101.IF "$(COM)"=="GCC"

--- 72 unchanged lines hidden (view full) ---

174
175OUTDIR2INC=mozilla$/dist$/public$/nss mozilla$/dist$/out$/include
176
177# --- Targets ------------------------------------------------------
178
179.INCLUDE : set_ext.mk
180.INCLUDE : target.mk
181.INCLUDE : tg_ext.mk
95.ENDIF
96
97.ENDIF # "$(GUI)"=="UNX"
98
99
100.IF "$(GUI)"=="WNT"
101
102.IF "$(COM)"=="GCC"

--- 72 unchanged lines hidden (view full) ---

175
176OUTDIR2INC=mozilla$/dist$/public$/nss mozilla$/dist$/out$/include
177
178# --- Targets ------------------------------------------------------
179
180.INCLUDE : set_ext.mk
181.INCLUDE : target.mk
182.INCLUDE : tg_ext.mk
182
183# This is a hack to build on a Linux 3.0 system. Between unpacking
184# the archive and building it, the existing Linux2.6.mk makefile is
185# copied to Linux3.0.mk, which otherwise would be missing and break
186# the build. See moz module for a similar hack.
187# If someone finds a better solution then please change this.
188.IF "$(OS)"=="LINUX"
189BUILD_ACTION:= $(COPY) \
190 ../../../mozilla/security/coreconf/Linux2.6.mk \
191 ../../../mozilla/security/coreconf/Linux3.0.mk \
192 && $(BUILD_ACTION)
193.ENDIF