security/nss/coreconf/command.mk

changeset 0
6474c204b198
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/security/nss/coreconf/command.mk	Wed Dec 31 06:09:35 2014 +0100
     1.3 @@ -0,0 +1,40 @@
     1.4 +#
     1.5 +# This Source Code Form is subject to the terms of the Mozilla Public
     1.6 +# License, v. 2.0. If a copy of the MPL was not distributed with this
     1.7 +# file, You can obtain one at http://mozilla.org/MPL/2.0/.
     1.8 +
     1.9 +#######################################################################
    1.10 +# Master "Core Components" default command macros;                    #
    1.11 +# can be overridden in <arch>.mk                                      #
    1.12 +#######################################################################
    1.13 +
    1.14 +AS            = $(CC)
    1.15 +ASFLAGS      += $(CFLAGS)
    1.16 +CCF           = $(CC) $(CFLAGS)
    1.17 +LINK_DLL      = $(LINK) $(OS_DLLFLAGS) $(DLLFLAGS)
    1.18 +LINK_EXE      = $(LINK) $(OS_LFLAGS) $(LFLAGS)
    1.19 +CFLAGS        = $(OPTIMIZER) $(OS_CFLAGS) $(XP_DEFINE) $(DEFINES) $(INCLUDES) \
    1.20 +		$(XCFLAGS)
    1.21 +PERL          = perl
    1.22 +RANLIB        = echo
    1.23 +TAR           = /bin/tar
    1.24 +#
    1.25 +# For purify
    1.26 +#
    1.27 +NOMD_CFLAGS  += $(OPTIMIZER) $(NOMD_OS_CFLAGS) $(XP_DEFINE) $(DEFINES) \
    1.28 +		$(INCLUDES) $(XCFLAGS)
    1.29 +
    1.30 +# Optimization of code for size
    1.31 +# OPT_CODE_SIZE
    1.32 +# =1: The code can be optimized for size.
    1.33 +#     The code is actually optimized for size only if ALLOW_OPT_CODE_SIZE=1
    1.34 +#     in a given source code directory (in manifest.mn)
    1.35 +# =0: Never optimize the code for size.
    1.36 +#
    1.37 +# Default value = 0 
    1.38 +# Can be overridden from the make command line.
    1.39 +ifndef OPT_CODE_SIZE
    1.40 +OPT_CODE_SIZE = 0
    1.41 +endif
    1.42 +
    1.43 +MK_COMMAND = included

mercurial