michael@0: # -*- Mode: Makefile -*- michael@0: # This Source Code Form is subject to the terms of the Mozilla Public michael@0: # License, v. 2.0. If a copy of the MPL was not distributed with this michael@0: # file, You can obtain one at http://mozilla.org/MPL/2.0/. michael@0: michael@0: michael@0: INCLUDED_AUTOCONF_MK = 1 michael@0: USE_AUTOCONF = 1 michael@0: @SHELL_OVERRIDE@ michael@0: MOZILLA_CLIENT = @MOZILLA_CLIENT@ michael@0: michael@0: prefix = @prefix@ michael@0: exec_prefix = @exec_prefix@ michael@0: bindir = @bindir@ michael@0: includedir = @includedir@ michael@0: libdir = @libdir@ michael@0: datarootdir = @datarootdir@ michael@0: datadir = @datadir@ michael@0: michael@0: dist_prefix = @dist_prefix@ michael@0: dist_bindir = @dist_bindir@ michael@0: dist_includedir = @dist_includedir@ michael@0: dist_libdir = @dist_libdir@ michael@0: michael@0: DIST = $(dist_prefix) michael@0: michael@0: RELEASE_OBJDIR_NAME = @RELEASE_OBJDIR_NAME@ michael@0: OBJDIR_NAME = @OBJDIR_NAME@ michael@0: OBJDIR = @OBJDIR@ michael@0: # We do magic with OBJ_SUFFIX in config.mk, the following ensures we don't michael@0: # manually use it before config.mk inclusion michael@0: OBJ_SUFFIX = $(error config/config.mk needs to be included before using OBJ_SUFFIX) michael@0: _OBJ_SUFFIX = @OBJ_SUFFIX@ michael@0: LIB_SUFFIX = @LIB_SUFFIX@ michael@0: DLL_SUFFIX = @DLL_SUFFIX@ michael@0: ASM_SUFFIX = @ASM_SUFFIX@ michael@0: MOD_NAME = @NSPR_MODNAME@ michael@0: michael@0: MOD_MAJOR_VERSION = @MOD_MAJOR_VERSION@ michael@0: MOD_MINOR_VERSION = @MOD_MINOR_VERSION@ michael@0: MOD_PATCH_VERSION = @MOD_PATCH_VERSION@ michael@0: michael@0: LIBNSPR = @LIBNSPR@ michael@0: LIBPLC = @LIBPLC@ michael@0: michael@0: CROSS_COMPILE = @CROSS_COMPILE@ michael@0: MOZ_OPTIMIZE = @MOZ_OPTIMIZE@ michael@0: MOZ_DEBUG = @MOZ_DEBUG@ michael@0: MOZ_DEBUG_SYMBOLS = @MOZ_DEBUG_SYMBOLS@ michael@0: michael@0: USE_CPLUS = @USE_CPLUS@ michael@0: USE_IPV6 = @USE_IPV6@ michael@0: USE_N32 = @USE_N32@ michael@0: USE_X32 = @USE_X32@ michael@0: USE_64 = @USE_64@ michael@0: ENABLE_STRIP = @ENABLE_STRIP@ michael@0: michael@0: USE_PTHREADS = @USE_PTHREADS@ michael@0: USE_BTHREADS = @USE_BTHREADS@ michael@0: PTHREADS_USER = @USE_USER_PTHREADS@ michael@0: CLASSIC_NSPR = @USE_NSPR_THREADS@ michael@0: michael@0: AS = @AS@ michael@0: ASFLAGS = @ASFLAGS@ michael@0: CC = @CC@ michael@0: CCC = @CXX@ michael@0: NS_USE_GCC = @GNU_CC@ michael@0: GCC_USE_GNU_LD = @GCC_USE_GNU_LD@ michael@0: MSC_VER = @MSC_VER@ michael@0: AR = @AR@ michael@0: AR_FLAGS = @AR_FLAGS@ michael@0: LD = @LD@ michael@0: RANLIB = @RANLIB@ michael@0: PERL = @PERL@ michael@0: RC = @RC@ michael@0: RCFLAGS = @RCFLAGS@ michael@0: STRIP = @STRIP@ michael@0: NSINSTALL = @NSINSTALL@ michael@0: FILTER = @FILTER@ michael@0: IMPLIB = @IMPLIB@ michael@0: CYGWIN_WRAPPER = @CYGWIN_WRAPPER@ michael@0: MT = @MT@ michael@0: michael@0: OS_CPPFLAGS = @CPPFLAGS@ michael@0: OS_CFLAGS = $(OS_CPPFLAGS) @CFLAGS@ $(DSO_CFLAGS) michael@0: OS_CXXFLAGS = $(OS_CPPFLAGS) @CXXFLAGS@ $(DSO_CFLAGS) michael@0: OS_LIBS = @OS_LIBS@ michael@0: OS_LDFLAGS = @LDFLAGS@ michael@0: OS_DLLFLAGS = @OS_DLLFLAGS@ michael@0: DLLFLAGS = @DLLFLAGS@ michael@0: EXEFLAGS = @EXEFLAGS@ michael@0: OPTIMIZER = @OPTIMIZER@ michael@0: michael@0: PROFILE_GEN_CFLAGS = @PROFILE_GEN_CFLAGS@ michael@0: PROFILE_GEN_LDFLAGS = @PROFILE_GEN_LDFLAGS@ michael@0: PROFILE_USE_CFLAGS = @PROFILE_USE_CFLAGS@ michael@0: PROFILE_USE_LDFLAGS = @PROFILE_USE_LDFLAGS@ michael@0: michael@0: MKSHLIB = @MKSHLIB@ michael@0: WRAP_LDFLAGS = @WRAP_LDFLAGS@ michael@0: DSO_CFLAGS = @DSO_CFLAGS@ michael@0: DSO_LDOPTS = @DSO_LDOPTS@ michael@0: michael@0: RESOLVE_LINK_SYMBOLS = @RESOLVE_LINK_SYMBOLS@ michael@0: michael@0: HOST_CC = @HOST_CC@ michael@0: HOST_CFLAGS = @HOST_CFLAGS@ michael@0: HOST_LDFLAGS = @HOST_LDFLAGS@ michael@0: michael@0: DEFINES = @DEFINES@ @DEFS@ michael@0: michael@0: MDCPUCFG_H = @MDCPUCFG_H@ michael@0: PR_MD_CSRCS = @PR_MD_CSRCS@ michael@0: PR_MD_ASFILES = @PR_MD_ASFILES@ michael@0: PR_MD_ARCH_DIR = @PR_MD_ARCH_DIR@ michael@0: CPU_ARCH = @CPU_ARCH@ michael@0: michael@0: OS_TARGET = @OS_TARGET@ michael@0: OS_ARCH = @OS_ARCH@ michael@0: OS_RELEASE = @OS_RELEASE@ michael@0: OS_TEST = @OS_TEST@ michael@0: michael@0: NOSUCHFILE = @NOSUCHFILE@ michael@0: AIX_LINK_OPTS = @AIX_LINK_OPTS@ michael@0: MOZ_OBJFORMAT = @MOZ_OBJFORMAT@ michael@0: ULTRASPARC_LIBRARY = @ULTRASPARC_LIBRARY@ michael@0: michael@0: OBJECT_MODE = @OBJECT_MODE@ michael@0: ifdef OBJECT_MODE michael@0: export OBJECT_MODE michael@0: endif michael@0: michael@0: VISIBILITY_FLAGS = @VISIBILITY_FLAGS@ michael@0: WRAP_SYSTEM_INCLUDES = @WRAP_SYSTEM_INCLUDES@ michael@0: michael@0: MACOSX_DEPLOYMENT_TARGET = @MACOSX_DEPLOYMENT_TARGET@ michael@0: ifdef MACOSX_DEPLOYMENT_TARGET michael@0: export MACOSX_DEPLOYMENT_TARGET michael@0: endif michael@0: michael@0: MACOS_SDK_DIR = @MACOS_SDK_DIR@ michael@0: michael@0: SYMBIAN_SDK_DIR = @SYMBIAN_SDK_DIR@ michael@0: michael@0: NEXT_ROOT = @NEXT_ROOT@ michael@0: ifdef NEXT_ROOT michael@0: export NEXT_ROOT michael@0: endif