зеркало из https://github.com/mozilla/pjs.git
150 строки
4.0 KiB
Makefile
150 строки
4.0 KiB
Makefile
# -*- Mode: 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) 2001
|
|
# the Initial Developer. All Rights Reserved.
|
|
#
|
|
# Contributor(s):
|
|
#
|
|
# Alternatively, the contents of this file may be used under the terms of
|
|
# either of 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 *****
|
|
|
|
INCLUDED_AUTOCONF_MK = 1
|
|
USE_AUTOCONF = 1
|
|
@SHELL_OVERRIDE@
|
|
MOZILLA_CLIENT = @MOZILLA_CLIENT@
|
|
|
|
prefix = @prefix@
|
|
exec_prefix = @exec_prefix@
|
|
bindir = @bindir@
|
|
includedir = @includedir@
|
|
libdir = @libdir@
|
|
datadir = @datadir@
|
|
|
|
dist_prefix = @dist_prefix@
|
|
dist_bindir = @dist_bindir@
|
|
dist_libdir = @dist_libdir@
|
|
|
|
DIST = $(dist_prefix)
|
|
|
|
RELEASE_OBJDIR_NAME = @RELEASE_OBJDIR_NAME@
|
|
OBJDIR_NAME = @OBJDIR_NAME@
|
|
OBJDIR = @OBJDIR@
|
|
OBJ_SUFFIX = @OBJ_SUFFIX@
|
|
LIB_SUFFIX = @LIB_SUFFIX@
|
|
LIB_PREFIX = @LIB_PREFIX@
|
|
DLL_SUFFIX = @DLL_SUFFIX@
|
|
ASM_SUFFIX = @ASM_SUFFIX@
|
|
PROG_SUFFIX = @PROG_SUFFIX@
|
|
MOD_NAME = @NSPR_MODNAME@
|
|
|
|
CROSS_COMPILE = @CROSS_COMPILE@
|
|
BUILD_OPT = @MOZ_OPTIMIZE@
|
|
|
|
USE_NSS = @USE_NSS@
|
|
USE_CPLUS = @USE_CPLUS@
|
|
USE_IPV6 = @USE_IPV6@
|
|
USE_N32 = @USE_N32@
|
|
USE_64 = @USE_64@
|
|
GC_LEAK_DETECTOR = @GC_LEAK_DETECTOR@
|
|
ENABLE_STRIP = @ENABLE_STRIP@
|
|
|
|
USE_PTHREADS = @USE_PTHREADS@
|
|
USE_BTHREADS = @USE_BTHREADS@
|
|
PTHREADS_USER = @USE_USER_PTHREADS@
|
|
CLASSIC_NSPR = @USE_NSPR_THREADS@
|
|
|
|
AS = @AS@
|
|
ASFLAGS = @ASFLAGS@
|
|
CC = @CC@
|
|
CCC = @CXX@
|
|
NS_USE_GCC = @GNU_CC@
|
|
AR = @AR@
|
|
AR_FLAGS = @AR_FLAGS@
|
|
LD = @LD@
|
|
RANLIB = @RANLIB@
|
|
PERL = @PERL@
|
|
WINDRES = @WINDRES@
|
|
RC = @RC@
|
|
STRIP = @STRIP@
|
|
NSINSTALL = @NSINSTALL@
|
|
FILTER = @FILTER@
|
|
IMPLIB = @IMPLIB@
|
|
|
|
OS_CPPFLAGS = @CPPFLAGS@
|
|
OS_CFLAGS = $(OS_CPPFLAGS) @CFLAGS@ $(DSO_CFLAGS)
|
|
OS_CXXFLAGS = $(OS_CPPFLAGS) @CXXFLAGS@ $(DSO_CFLAGS)
|
|
OS_LIBS = @OS_LIBS@
|
|
OS_LDFLAGS = @LDFLAGS@
|
|
OS_DLLFLAGS = @OS_DLLFLAGS@
|
|
DLLFLAGS = @DLLFLAGS@
|
|
EXEFLAGS = @EXEFLAGS@
|
|
OPTIMIZER = @OPTIMIZER@
|
|
|
|
MKSHLIB = @MKSHLIB@
|
|
DSO_CFLAGS = @DSO_CFLAGS@
|
|
DSO_LDOPTS = @DSO_LDOPTS@
|
|
|
|
RESOLVE_LINK_SYMBOLS = @RESOLVE_LINK_SYMBOLS@
|
|
|
|
HOST_CC = @HOST_CC@
|
|
HOST_CFLAGS = @HOST_CFLAGS@
|
|
|
|
DEFINES = @DEFINES@ @DEFS@
|
|
|
|
MDCPUCFG_H = @MDCPUCFG_H@
|
|
PR_MD_CSRCS = @PR_MD_CSRCS@
|
|
PR_MD_ASFILES = @PR_MD_ASFILES@
|
|
PR_MD_ARCH_DIR = @PR_MD_ARCH_DIR@
|
|
CPU_ARCH = @CPU_ARCH@
|
|
|
|
OS_TARGET = @OS_TARGET@
|
|
OS_ARCH = @OS_ARCH@
|
|
OS_RELEASE = @OS_RELEASE@
|
|
OS_TEST = @OS_TEST@
|
|
|
|
NOSUCHFILE = @NOSUCHFILE@
|
|
AIX_LINK_OPTS = @AIX_LINK_OPTS@
|
|
MOZ_OBJFORMAT = @MOZ_OBJFORMAT@
|
|
ULTRASPARC_LIBRARY = @ULTRASPARC_LIBRARY@
|
|
ULTRASPARC_FILTER_LIBRARY = @ULTRASPARC_FILTER_LIBRARY@
|
|
|
|
OBJECT_MODE = @OBJECT_MODE@
|
|
ifdef OBJECT_MODE
|
|
export OBJECT_MODE
|
|
endif
|
|
|
|
# ldap-specific code (up to here, all the code came from
|
|
# mozilla/nsprpub/config/autoconf.mk.in)
|
|
#
|
|
MOZILLA_CLIENT = 1
|
|
VPATH = $(srcdir)
|