security/nss/coreconf/command.mk

Wed, 31 Dec 2014 06:09:35 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 06:09:35 +0100
changeset 0
6474c204b198
permissions
-rw-r--r--

Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.

     1 #
     2 # This Source Code Form is subject to the terms of the Mozilla Public
     3 # License, v. 2.0. If a copy of the MPL was not distributed with this
     4 # file, You can obtain one at http://mozilla.org/MPL/2.0/.
     6 #######################################################################
     7 # Master "Core Components" default command macros;                    #
     8 # can be overridden in <arch>.mk                                      #
     9 #######################################################################
    11 AS            = $(CC)
    12 ASFLAGS      += $(CFLAGS)
    13 CCF           = $(CC) $(CFLAGS)
    14 LINK_DLL      = $(LINK) $(OS_DLLFLAGS) $(DLLFLAGS)
    15 LINK_EXE      = $(LINK) $(OS_LFLAGS) $(LFLAGS)
    16 CFLAGS        = $(OPTIMIZER) $(OS_CFLAGS) $(XP_DEFINE) $(DEFINES) $(INCLUDES) \
    17 		$(XCFLAGS)
    18 PERL          = perl
    19 RANLIB        = echo
    20 TAR           = /bin/tar
    21 #
    22 # For purify
    23 #
    24 NOMD_CFLAGS  += $(OPTIMIZER) $(NOMD_OS_CFLAGS) $(XP_DEFINE) $(DEFINES) \
    25 		$(INCLUDES) $(XCFLAGS)
    27 # Optimization of code for size
    28 # OPT_CODE_SIZE
    29 # =1: The code can be optimized for size.
    30 #     The code is actually optimized for size only if ALLOW_OPT_CODE_SIZE=1
    31 #     in a given source code directory (in manifest.mn)
    32 # =0: Never optimize the code for size.
    33 #
    34 # Default value = 0 
    35 # Can be overridden from the make command line.
    36 ifndef OPT_CODE_SIZE
    37 OPT_CODE_SIZE = 0
    38 endif
    40 MK_COMMAND = included

mercurial