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