makefile.mk (cdf0e10c) makefile.mk (515ef96a)
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#

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

149
150#To build nss one has to call "make nss_build_all" in
151#mozilla/security/nss
152NSS_BUILD_DIR= $(subst,\,/ $(PWD)/$(MISC)/build/$(TARFILE_ROOTDIR)/mozilla/security/nss)
153BUILD_ACTION= PATH="$(moz_build)/msys/bin:$(moz_build)/moztools/bin:$(PATH)" && $(subst,/,$/ $(MOZILLABUILD)/msys/bin/bash) -i \
154 -c "cd $(NSS_BUILD_DIR) && make nss_build_all"
155
156OUT2LIB= \
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#

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

149
150#To build nss one has to call "make nss_build_all" in
151#mozilla/security/nss
152NSS_BUILD_DIR= $(subst,\,/ $(PWD)/$(MISC)/build/$(TARFILE_ROOTDIR)/mozilla/security/nss)
153BUILD_ACTION= PATH="$(moz_build)/msys/bin:$(moz_build)/moztools/bin:$(PATH)" && $(subst,/,$/ $(MOZILLABUILD)/msys/bin/bash) -i \
154 -c "cd $(NSS_BUILD_DIR) && make nss_build_all"
155
156OUT2LIB= \
157 mozilla$/dist$/out$/lib$/nspr4.lib \
158 mozilla$/dist$/out$/lib$/nss3.lib \
159 mozilla$/dist$/out$/lib$/nssdbm3.lib \
160 mozilla$/dist$/out$/lib$/nssutil3.lib \
161 mozilla$/dist$/out$/lib$/plc4.lib \
162 mozilla$/dist$/out$/lib$/plds4.lib \
163 mozilla$/dist$/out$/lib$/smime3.lib \
164 mozilla$/dist$/out$/lib$/softokn3.lib \
165 mozilla$/dist$/out$/lib$/sqlite3.lib \
166 mozilla$/dist$/out$/lib$/ssl3.lib
157 mozilla$/dist$/out$/lib$/nspr4.lib \
158 mozilla$/dist$/out$/lib$/nss3.lib \
159 mozilla$/dist$/out$/lib$/nssdbm3.lib \
160 mozilla$/dist$/out$/lib$/nssutil3.lib \
161 mozilla$/dist$/out$/lib$/plc4.lib \
162 mozilla$/dist$/out$/lib$/plds4.lib \
163 mozilla$/dist$/out$/lib$/smime3.lib \
164 mozilla$/dist$/out$/lib$/softokn3.lib \
165 mozilla$/dist$/out$/lib$/sqlite3.lib \
166 mozilla$/dist$/out$/lib$/ssl3.lib
167
168.ENDIF # "$(COM)"=="GCC"
169
170OUT2BIN=mozilla$/dist$/out$/lib$/*$(DLLPOST)
171.ENDIF # "$(GUI)"=="WNT"
172
173
174OUTDIR2INC=mozilla$/dist$/public$/nss mozilla$/dist$/out$/include
175
176# --- Targets ------------------------------------------------------
177
178.INCLUDE : set_ext.mk
179.INCLUDE : target.mk
180.INCLUDE : tg_ext.mk
181
167
168.ENDIF # "$(COM)"=="GCC"
169
170OUT2BIN=mozilla$/dist$/out$/lib$/*$(DLLPOST)
171.ENDIF # "$(GUI)"=="WNT"
172
173
174OUTDIR2INC=mozilla$/dist$/public$/nss mozilla$/dist$/out$/include
175
176# --- Targets ------------------------------------------------------
177
178.INCLUDE : set_ext.mk
179.INCLUDE : target.mk
180.INCLUDE : tg_ext.mk
181
182
182# This is a hack to build on a Linux 3.0 system. Between unpacking
183# the archive and building it, the existing Linux2.6.mk makefile is
184# copied to Linux3.0.mk, which otherwise would be missing and break
185# the build. See moz module for a similar hack.
186# If someone finds a better solution then please change this.
187.IF "$(OS)"=="LINUX"
188BUILD_ACTION:= $(COPY) \
189 ../../../mozilla/security/coreconf/Linux2.6.mk \
190 ../../../mozilla/security/coreconf/Linux3.0.mk \
191 && $(BUILD_ACTION)
192.ENDIF