mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-02 07:05:24 +00:00
369 lines
11 KiB
Makefile
369 lines
11 KiB
Makefile
#
|
|
# ***** BEGIN LICENSE BLOCK *****
|
|
# Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
|
#
|
|
# The contents of this file are subject to the Mozilla Public License Version
|
|
# 1.1 (the "License"); you may not use this file except in compliance with
|
|
# the License. You may obtain a copy of the License at
|
|
# http://www.mozilla.org/MPL/
|
|
#
|
|
# Software distributed under the License is distributed on an "AS IS" basis,
|
|
# WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
|
# for the specific language governing rights and limitations under the
|
|
# License.
|
|
#
|
|
# The Original Code is mozilla.org code.
|
|
#
|
|
# The Initial Developer of the Original Code is
|
|
# Netscape Communications Corporation.
|
|
# Portions created by the Initial Developer are Copyright (C) 1998
|
|
# the Initial Developer. All Rights Reserved.
|
|
#
|
|
# Contributor(s):
|
|
# Brian Ryner <bryner@brianryner.com>
|
|
#
|
|
# Alternatively, the contents of this file may be used under the terms of
|
|
# either the GNU General Public License Version 2 or later (the "GPL"), or
|
|
# the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
|
# in which case the provisions of the GPL or the LGPL are applicable instead
|
|
# of those above. If you wish to allow use of your version of this file only
|
|
# under the terms of either the GPL or the LGPL, and not to allow others to
|
|
# use your version of this file under the terms of the MPL, indicate your
|
|
# decision by deleting the provisions above and replace them with the notice
|
|
# and other provisions required by the GPL or the LGPL. If you do not delete
|
|
# the provisions above, a recipient may use your version of this file under
|
|
# the terms of any one of the MPL, the GPL or the LGPL.
|
|
#
|
|
# ***** END LICENSE BLOCK *****
|
|
|
|
DEPTH = ../..
|
|
topsrcdir = @top_srcdir@
|
|
srcdir = @srcdir@
|
|
VPATH = @srcdir@
|
|
|
|
include $(DEPTH)/config/autoconf.mk
|
|
|
|
MODULE = psm
|
|
|
|
PACKAGE_FILE = psm.pkg
|
|
|
|
ifndef MOZ_NATIVE_NSS
|
|
PACKAGE_VARS += \
|
|
NSS3_LIB \
|
|
SMIME3_LIB \
|
|
SSL3_LIB \
|
|
SOFTOKEN3_LIB \
|
|
SOFTOKEN3_CHK \
|
|
LOADABLE_ROOT_MODULE \
|
|
HAVE_FREEBL_LIBS \
|
|
HAVE_FREEBL_LIBS_32 \
|
|
HAVE_FREEBL_LIBS_32INT64 \
|
|
HAVE_FREEBL_LIBS_64 \
|
|
$(NULL)
|
|
|
|
LOADABLE_ROOT_MODULE = $(DLL_PREFIX)nssckbi$(DLL_SUFFIX)
|
|
endif
|
|
|
|
NSS3_LIB = $(DLL_PREFIX)nss3$(DLL_SUFFIX)
|
|
SMIME3_LIB = $(DLL_PREFIX)smime3$(DLL_SUFFIX)
|
|
SSL3_LIB = $(DLL_PREFIX)ssl3$(DLL_SUFFIX)
|
|
SOFTOKEN3_LIB = $(DLL_PREFIX)softokn3$(DLL_SUFFIX)
|
|
SOFTOKEN3_CHK = $(DLL_PREFIX)softokn3.chk
|
|
|
|
# Default
|
|
HAVE_FREEBL_LIBS = 1
|
|
|
|
# 32-bit HP-UX PA-RISC
|
|
ifeq ($(OS_ARCH), HP-UX)
|
|
ifneq ($(OS_TEST), ia64)
|
|
ifndef HAVE_64BIT_OS
|
|
HAVE_FREEBL_LIBS =
|
|
HAVE_FREEBL_LIBS_32 = 1
|
|
endif
|
|
endif
|
|
endif
|
|
|
|
# SunOS SPARC
|
|
ifeq ($(OS_ARCH), SunOS)
|
|
ifneq ($(OS_TEST), i86pc)
|
|
ifdef HAVE_64BIT_OS
|
|
HAVE_FREEBL_LIBS =
|
|
HAVE_FREEBL_LIBS_64 = 1
|
|
else
|
|
HAVE_FREEBL_LIBS =
|
|
HAVE_FREEBL_LIBS_32 = 1
|
|
HAVE_FREEBL_LIBS_32INT64 = 1
|
|
endif
|
|
endif
|
|
endif
|
|
|
|
ifdef HAVE_FREEBL_LIBS
|
|
FREEBL_LIB = $(DLL_PREFIX)freebl3$(DLL_SUFFIX)
|
|
FREEBL_CHK = $(DLL_PREFIX)freebl3.chk
|
|
endif
|
|
ifdef HAVE_FREEBL_LIBS_32
|
|
FREEBL_32INT_LIB = libfreebl_32int_3$(DLL_SUFFIX)
|
|
FREEBL_32INT_CHK = libfreebl_32int_3.chk
|
|
FREEBL_32FPU_LIB = libfreebl_32fpu_3$(DLL_SUFFIX)
|
|
FREEBL_32FPU_CHK = libfreebl_32fpu_3.chk
|
|
endif
|
|
ifdef HAVE_FREEBL_LIBS_32INT64
|
|
FREEBL_32INT64_LIB = libfreebl_32int64_3$(DLL_SUFFIX)
|
|
FREEBL_32INT64_CHK = libfreebl_32int64_3.chk
|
|
endif
|
|
ifdef HAVE_FREEBL_LIBS_64
|
|
FREEBL_64INT_LIB = libfreebl_64int_3$(DLL_SUFFIX)
|
|
FREEBL_64INT_CHK = libfreebl_64int_3.chk
|
|
FREEBL_64FPU_LIB = libfreebl_64fpu_3$(DLL_SUFFIX)
|
|
FREEBL_64FPU_CHK = libfreebl_64fpu_3.chk
|
|
endif
|
|
|
|
ABS_DIST := $(shell cd $(DIST) && pwd)
|
|
ifeq ($(HOST_OS_ARCH),WINNT)
|
|
ifdef CYGDRIVE_MOUNT
|
|
ABS_DIST := $(shell cygpath -w $(ABS_DIST) | sed -e 's|\\|/|g')
|
|
endif
|
|
ifneq (,$(filter mingw%,$(host_os)))
|
|
ABS_DIST := $(shell cd $(DIST) && pwd -W)
|
|
endif
|
|
endif
|
|
NSPR_INCLUDE_DIR = $(firstword $(filter -I%,$(NSPR_CFLAGS)))
|
|
ifneq (,$(strip $(NSPR_INCLUDE_DIR)))
|
|
NSPR_INCLUDE_DIR := $(subst -I,,$(subst -I$(DIST),-I$(ABS_DIST),$(NSPR_INCLUDE_DIR)))
|
|
else
|
|
NSPR_INCLUDE_DIR = $(ABS_DIST)/include/nspr
|
|
endif
|
|
NSPR_LIB_DIR = $(firstword $(filter -L%,$(NSPR_LIBS)))
|
|
ifneq (,$(strip $(NSPR_LIB_DIR)))
|
|
NSPR_LIB_DIR := $(subst -L,,$(subst -L$(DIST),-L$(ABS_DIST),$(NSPR_LIB_DIR)))
|
|
else
|
|
NSPR_LIB_DIR = $(ABS_DIST)/lib
|
|
endif
|
|
# NSS makefiles are not safe for parallel execution.
|
|
DEFAULT_GMAKE_FLAGS = MAKE="$(MAKE) -j1" -j1
|
|
DEFAULT_GMAKE_FLAGS += CC="$(CC)"
|
|
DEFAULT_GMAKE_FLAGS += SOURCE_MD_DIR=$(ABS_DIST)
|
|
DEFAULT_GMAKE_FLAGS += DIST=$(ABS_DIST)
|
|
DEFAULT_GMAKE_FLAGS += NSPR_INCLUDE_DIR=$(NSPR_INCLUDE_DIR)
|
|
DEFAULT_GMAKE_FLAGS += NSPR_LIB_DIR=$(NSPR_LIB_DIR)
|
|
DEFAULT_GMAKE_FLAGS += MOZILLA_CLIENT=1
|
|
DEFAULT_GMAKE_FLAGS += NO_MDUPDATE=1
|
|
DEFAULT_GMAKE_FLAGS += NSS_ENABLE_ECC=1
|
|
ABS_topsrcdir := $(shell cd $(topsrcdir); pwd)
|
|
ifneq ($(ABS_topsrcdir),$(MOZ_BUILD_ROOT))
|
|
DEFAULT_GMAKE_FLAGS += BUILD_TREE=$(MOZ_BUILD_ROOT)
|
|
endif
|
|
ifndef MOZ_DEBUG
|
|
DEFAULT_GMAKE_FLAGS += BUILD_OPT=1
|
|
endif
|
|
ifdef GNU_CC
|
|
DEFAULT_GMAKE_FLAGS += NS_USE_GCC=1 NS_USE_NATIVE=
|
|
else
|
|
DEFAULT_GMAKE_FLAGS += NS_USE_GCC= NS_USE_NATIVE=1
|
|
endif
|
|
ifdef USE_N32
|
|
# It is not really necessary to specify USE_PTHREADS=1. USE_PTHREADS
|
|
# merely adds _PTH to coreconf's OBJDIR name.
|
|
DEFAULT_GMAKE_FLAGS += USE_N32=1 USE_PTHREADS=1
|
|
endif
|
|
ifdef HAVE_64BIT_OS
|
|
DEFAULT_GMAKE_FLAGS += USE_64=1
|
|
endif
|
|
ifeq ($(OS_ARCH),WINNT)
|
|
DEFAULT_GMAKE_FLAGS += OS_TARGET=WIN95
|
|
ifdef MOZ_DEBUG
|
|
ifndef MOZ_NO_DEBUG_RTL
|
|
DEFAULT_GMAKE_FLAGS += USE_DEBUG_RTL=1
|
|
endif
|
|
endif
|
|
endif # WINNT
|
|
ifeq ($(OS_ARCH),OS2)
|
|
ifdef MOZ_OS2_HIGH_MEMORY
|
|
DEFAULT_GMAKE_FLAGS += MOZ_OS2_HIGH_MEMORY=1
|
|
endif
|
|
endif # OS2
|
|
# OS_CFLAGS needs to be passed on down.
|
|
ifeq ($(OS_ARCH),OpenVMS)
|
|
DEFAULT_GMAKE_FLAGS += XCFLAGS="$(OS_CFLAGS)"
|
|
endif
|
|
ifeq ($(OS_ARCH),Darwin)
|
|
# Make nsinstall use absolute symlinks by default when building NSS
|
|
# for Mozilla on Mac OS X. (Bugzilla bug 193164)
|
|
ifndef NSDISTMODE
|
|
DEFAULT_GMAKE_FLAGS += NSDISTMODE=absolute_symlink
|
|
endif
|
|
ifdef MACOS_SDK_DIR
|
|
DEFAULT_GMAKE_FLAGS += MACOS_SDK_DIR=$(MACOS_SDK_DIR)
|
|
endif
|
|
endif
|
|
ifdef CROSS_COMPILE
|
|
DEFAULT_GMAKE_FLAGS += \
|
|
NSINSTALL="$(NSINSTALL)" \
|
|
NATIVE_CC="$(HOST_CC)" \
|
|
CC="$(CC)" \
|
|
CCC="$(CXX)" \
|
|
LINK="$(LD)" \
|
|
AS="$(AS)" \
|
|
AR='$(AR) $(AR_FLAGS:$@=$$@)' \
|
|
RANLIB="$(RANLIB)" \
|
|
RC="$(RC) $(RCFLAGS)" \
|
|
OS_ARCH="$(OS_ARCH)" \
|
|
CPU_ARCH="$(TARGET_CPU)" \
|
|
$(NULL)
|
|
SKIP_CHK=1
|
|
endif
|
|
SUBMAKEFILES = boot/Makefile ssl/Makefile pki/Makefile locales/Makefile
|
|
|
|
include $(topsrcdir)/config/rules.mk
|
|
|
|
# Attempt to properly handle NSS' refusal to implement a dependency system
|
|
export:: .nss.cleaned
|
|
|
|
.nss.cleaned: .nss.checkout
|
|
ifndef MOZ_NATIVE_NSS
|
|
$(MAKE) -C $(topsrcdir)/security/coreconf $(DEFAULT_GMAKE_FLAGS) clean
|
|
$(MAKE) -C $(topsrcdir)/security/nss/lib $(DEFAULT_GMAKE_FLAGS) clean
|
|
ifndef SKIP_CHK
|
|
$(MAKE) -C $(topsrcdir)/security/nss/cmd/lib $(DEFAULT_GMAKE_FLAGS) clean
|
|
$(MAKE) -C $(topsrcdir)/security/nss/cmd/shlibsign $(DEFAULT_GMAKE_FLAGS) clean
|
|
endif
|
|
touch $@
|
|
endif
|
|
|
|
GARBAGE += .nss.cleaned
|
|
|
|
.nss.checkout:
|
|
ifndef MOZ_NATIVE_NSS
|
|
touch $(srcdir)/$@
|
|
endif
|
|
|
|
dependclean export packages chrome::
|
|
$(MAKE) -C boot $@
|
|
$(MAKE) -C ssl $@
|
|
$(MAKE) -C locales $@
|
|
ifdef MOZ_XUL
|
|
$(MAKE) -C pki $@
|
|
endif
|
|
|
|
libs::
|
|
ifndef MOZ_NATIVE_NSS
|
|
$(MAKE) -C $(topsrcdir)/security/coreconf $(DEFAULT_GMAKE_FLAGS)
|
|
$(MAKE) -C $(topsrcdir)/security/dbm $(DEFAULT_GMAKE_FLAGS)
|
|
$(MAKE) -C $(topsrcdir)/security/nss/lib $(DEFAULT_GMAKE_FLAGS)
|
|
ifndef SKIP_CHK
|
|
$(MAKE) -C $(topsrcdir)/security/nss/cmd/lib $(DEFAULT_GMAKE_FLAGS)
|
|
$(MAKE) -C $(topsrcdir)/security/nss/cmd/shlibsign $(DEFAULT_GMAKE_FLAGS)
|
|
endif
|
|
$(INSTALL) -m 755 $(DIST)/lib/$(LOADABLE_ROOT_MODULE) $(DIST)/bin
|
|
ifndef SKIP_CHK
|
|
$(INSTALL) -m 644 $(DIST)/lib/$(SOFTOKEN3_CHK) $(DIST)/bin
|
|
endif
|
|
$(INSTALL) -m 755 $(DIST)/lib/$(SOFTOKEN3_LIB) $(DIST)/bin
|
|
$(INSTALL) -m 755 $(DIST)/lib/$(NSS3_LIB) $(DIST)/bin
|
|
$(INSTALL) -m 755 $(DIST)/lib/$(SSL3_LIB) $(DIST)/bin
|
|
$(INSTALL) -m 755 $(DIST)/lib/$(SMIME3_LIB) $(DIST)/bin
|
|
ifdef HAVE_FREEBL_LIBS
|
|
ifndef SKIP_CHK
|
|
$(INSTALL) -m 644 $(DIST)/lib/$(FREEBL_CHK) $(DIST)/bin
|
|
endif
|
|
$(INSTALL) -m 755 $(DIST)/lib/$(FREEBL_LIB) $(DIST)/bin
|
|
endif
|
|
ifdef HAVE_FREEBL_LIBS_32
|
|
ifndef SKIP_CHK
|
|
$(INSTALL) -m 644 $(DIST)/lib/$(FREEBL_32INT_CHK) $(DIST)/bin
|
|
$(INSTALL) -m 644 $(DIST)/lib/$(FREEBL_32FPU_CHK) $(DIST)/bin
|
|
endif
|
|
$(INSTALL) -m 755 $(DIST)/lib/$(FREEBL_32INT_LIB) $(DIST)/bin
|
|
$(INSTALL) -m 755 $(DIST)/lib/$(FREEBL_32FPU_LIB) $(DIST)/bin
|
|
endif
|
|
ifdef HAVE_FREEBL_LIBS_32INT64
|
|
ifndef SKIP_CHK
|
|
$(INSTALL) -m 644 $(DIST)/lib/$(FREEBL_32INT64_CHK) $(DIST)/bin
|
|
endif
|
|
$(INSTALL) -m 755 $(DIST)/lib/$(FREEBL_32INT64_LIB) $(DIST)/bin
|
|
endif
|
|
ifdef HAVE_FREEBL_LIBS_64
|
|
ifndef SKIP_CHK
|
|
$(INSTALL) -m 644 $(DIST)/lib/$(FREEBL_64INT_CHK) $(DIST)/bin
|
|
$(INSTALL) -m 644 $(DIST)/lib/$(FREEBL_64FPU_CHK) $(DIST)/bin
|
|
endif
|
|
$(INSTALL) -m 755 $(DIST)/lib/$(FREEBL_64INT_LIB) $(DIST)/bin
|
|
$(INSTALL) -m 755 $(DIST)/lib/$(FREEBL_64FPU_LIB) $(DIST)/bin
|
|
endif
|
|
endif
|
|
$(MAKE) -C boot $@
|
|
$(MAKE) -C ssl $@
|
|
$(MAKE) -C locales $@
|
|
ifdef MOZ_XUL
|
|
$(MAKE) -C pki $@
|
|
endif
|
|
|
|
install::
|
|
ifndef MOZ_NATIVE_NSS
|
|
$(SYSINSTALL) -m 755 $(DIST)/lib/$(LOADABLE_ROOT_MODULE) $(DESTDIR)$(mozappdir)
|
|
ifndef SKIP_CHK
|
|
$(SYSINSTALL) -m 644 $(DIST)/lib/$(SOFTOKEN3_CHK) $(DESTDIR)$(mozappdir)
|
|
endif
|
|
$(SYSINSTALL) -m 755 $(DIST)/lib/$(SOFTOKEN3_LIB) $(DESTDIR)$(mozappdir)
|
|
$(SYSINSTALL) -m 755 $(DIST)/lib/$(NSS3_LIB) $(DESTDIR)$(mozappdir)
|
|
$(SYSINSTALL) -m 755 $(DIST)/lib/$(SSL3_LIB) $(DESTDIR)$(mozappdir)
|
|
$(SYSINSTALL) -m 755 $(DIST)/lib/$(SMIME3_LIB) $(DESTDIR)$(mozappdir)
|
|
ifdef HAVE_FREEBL_LIBS
|
|
ifndef SKIP_CHK
|
|
$(SYSINSTALL) -m 644 $(DIST)/lib/$(FREEBL_CHK) $(DESTDIR)$(mozappdir)
|
|
endif
|
|
$(SYSINSTALL) -m 755 $(DIST)/lib/$(FREEBL_LIB) $(DESTDIR)$(mozappdir)
|
|
endif
|
|
ifdef HAVE_FREEBL_LIBS_32
|
|
ifndef SKIP_CHK
|
|
$(SYSINSTALL) -m 644 $(DIST)/lib/$(FREEBL_32INT_CHK) $(DESTDIR)$(mozappdir)
|
|
$(SYSINSTALL) -m 644 $(DIST)/lib/$(FREEBL_32FPU_CHK) $(DESTDIR)$(mozappdir)
|
|
endif
|
|
$(SYSINSTALL) -m 755 $(DIST)/lib/$(FREEBL_32INT_LIB) $(DESTDIR)$(mozappdir)
|
|
$(SYSINSTALL) -m 755 $(DIST)/lib/$(FREEBL_32FPU_LIB) $(DESTDIR)$(mozappdir)
|
|
endif
|
|
ifdef HAVE_FREEBL_LIBS_32INT64
|
|
ifndef SKIP_CHK
|
|
$(SYSINSTALL) -m 644 $(DIST)/lib/$(FREEBL_32INT64_CHK) $(DESTDIR)$(mozappdir)
|
|
endif
|
|
$(SYSINSTALL) -m 755 $(DIST)/lib/$(FREEBL_32INT64_LIB) $(DESTDIR)$(mozappdir)
|
|
endif
|
|
ifdef HAVE_FREEBL_LIBS_64
|
|
ifndef SKIP_CHK
|
|
$(SYSINSTALL) -m 644 $(DIST)/lib/$(FREEBL_64INT_CHK) $(DESTDIR)$(mozappdir)
|
|
$(SYSINSTALL) -m 644 $(DIST)/lib/$(FREEBL_64FPU_CHK) $(DESTDIR)$(mozappdir)
|
|
endif
|
|
$(SYSINSTALL) -m 755 $(DIST)/lib/$(FREEBL_64INT_LIB) $(DESTDIR)$(mozappdir)
|
|
$(SYSINSTALL) -m 755 $(DIST)/lib/$(FREEBL_64FPU_LIB) $(DESTDIR)$(mozappdir)
|
|
endif
|
|
endif
|
|
$(MAKE) -C boot $@
|
|
$(MAKE) -C ssl $@
|
|
$(MAKE) -C locales $@
|
|
ifdef MOZ_XUL
|
|
$(MAKE) -C pki $@
|
|
endif
|
|
|
|
clean clobber clobber_all realclean distclean depend::
|
|
$(MAKE) -C boot $@
|
|
$(MAKE) -C ssl $@
|
|
$(MAKE) -C locales $@
|
|
ifdef MOZ_XUL
|
|
$(MAKE) -C pki $@
|
|
endif
|
|
ifndef MOZ_NATIVE_NSS
|
|
$(MAKE) -C $(topsrcdir)/security/coreconf $(DEFAULT_GMAKE_FLAGS) clean
|
|
$(MAKE) -C $(topsrcdir)/security/nss/lib $(DEFAULT_GMAKE_FLAGS) clean
|
|
ifndef SKIP_CHK
|
|
$(MAKE) -C $(topsrcdir)/security/nss/cmd/lib $(DEFAULT_GMAKE_FLAGS) clean
|
|
$(MAKE) -C $(topsrcdir)/security/nss/cmd/shlibsign $(DEFAULT_GMAKE_FLAGS) clean
|
|
endif
|
|
endif
|
|
|
|
echo-requires-recursive::
|
|
$(MAKE) -C boot $@
|
|
$(MAKE) -C ssl $@
|
|
$(MAKE) -C pki $@
|
|
$(MAKE) -C locales $@
|
|
|