security/nss/coreconf/suffix.mk

changeset 0
6474c204b198
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/security/nss/coreconf/suffix.mk	Wed Dec 31 06:09:35 2014 +0100
     1.3 @@ -0,0 +1,67 @@
     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" suffixes                                   #
    1.11 +#######################################################################
    1.12 +
    1.13 +#
    1.14 +# Object suffixes   (OS2 and WIN% override this)
    1.15 +#
    1.16 +ifndef OBJ_SUFFIX
    1.17 +    OBJ_SUFFIX = .o
    1.18 +endif
    1.19 +
    1.20 +#
    1.21 +# Assembler source suffixes (OS2 and WIN% override this)
    1.22 +#
    1.23 +ifndef ASM_SUFFIX
    1.24 +    ASM_SUFFIX = .s
    1.25 +endif
    1.26 +
    1.27 +#
    1.28 +# Library suffixes
    1.29 +#
    1.30 +STATIC_LIB_EXTENSION =
    1.31 +
    1.32 +ifndef DYNAMIC_LIB_EXTENSION
    1.33 +    DYNAMIC_LIB_EXTENSION =
    1.34 +endif
    1.35 +
    1.36 +
    1.37 +ifndef STATIC_LIB_SUFFIX
    1.38 +    STATIC_LIB_SUFFIX = .$(LIB_SUFFIX)
    1.39 +endif
    1.40 +
    1.41 +
    1.42 +ifndef DYNAMIC_LIB_SUFFIX
    1.43 +    DYNAMIC_LIB_SUFFIX = .$(DLL_SUFFIX)
    1.44 +endif
    1.45 +
    1.46 +# WIN% overridese this
    1.47 +ifndef IMPORT_LIB_SUFFIX
    1.48 +    IMPORT_LIB_SUFFIX = 
    1.49 +endif
    1.50 +
    1.51 +
    1.52 +ifndef STATIC_LIB_SUFFIX_FOR_LINKING
    1.53 +    STATIC_LIB_SUFFIX_FOR_LINKING = $(STATIC_LIB_SUFFIX)
    1.54 +endif
    1.55 +
    1.56 +
    1.57 +# WIN% overridese this
    1.58 +ifndef DYNAMIC_LIB_SUFFIX_FOR_LINKING
    1.59 +    DYNAMIC_LIB_SUFFIX_FOR_LINKING = $(DYNAMIC_LIB_SUFFIX)
    1.60 +endif
    1.61 +
    1.62 +#
    1.63 +# Program suffixes (OS2 and WIN% override this)
    1.64 +#
    1.65 +
    1.66 +ifndef PROG_SUFFIX
    1.67 +    PROG_SUFFIX =
    1.68 +endif
    1.69 +
    1.70 +MK_SUFFIX = included

mercurial