suffix.mk
上传用户:lyxiangda
上传日期:2007-01-12
资源大小:3042k
文件大小:3k
源码类别:

CA认证

开发平台:

WINDOWS

  1. #
  2. # The contents of this file are subject to the Mozilla Public
  3. # License Version 1.1 (the "License"); you may not use this file
  4. # except in compliance with the License. You may obtain a copy of
  5. # the License at http://www.mozilla.org/MPL/
  6. # Software distributed under the License is distributed on an "AS
  7. # IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
  8. # implied. See the License for the specific language governing
  9. # rights and limitations under the License.
  10. # The Original Code is the Netscape security libraries.
  11. # The Initial Developer of the Original Code is Netscape
  12. # Communications Corporation.  Portions created by Netscape are 
  13. # Copyright (C) 1994-2000 Netscape Communications Corporation.  All
  14. # Rights Reserved.
  15. # Contributor(s):
  16. # Alternatively, the contents of this file may be used under the
  17. # terms of the GNU General Public License Version 2 or later (the
  18. # "GPL"), in which case the provisions of the GPL are applicable 
  19. # instead of those above.  If you wish to allow use of your 
  20. # version of this file only under the terms of the GPL and not to
  21. # allow others to use your version of this file under the MPL,
  22. # indicate your decision by deleting the provisions above and
  23. # replace them with the notice and other provisions required by
  24. # the GPL.  If you do not delete the provisions above, a recipient
  25. # may use your version of this file under either the MPL or the
  26. # GPL.
  27. #
  28. #######################################################################
  29. # Master "Core Components" suffixes                                   #
  30. #######################################################################
  31. #
  32. # Object suffixes
  33. #
  34. ifndef OBJ_SUFFIX
  35. ifeq ($(OS_ARCH), WINNT)
  36. OBJ_SUFFIX = .obj
  37. else
  38.     ifeq ($(OS_ARCH), OS2)
  39. OBJ_SUFFIX = .obj
  40.     else
  41. OBJ_SUFFIX = .o
  42.     endif
  43. endif
  44. endif
  45. #
  46. # Assembler source suffixes
  47. #
  48. ifndef ASM_SUFFIX
  49. ifeq ($(OS_ARCH), WINNT)
  50. ASM_SUFFIX = .asm
  51. else
  52. ASM_SUFFIX = .s
  53. endif
  54. endif
  55. #
  56. # Library suffixes
  57. #
  58. STATIC_LIB_EXTENSION =
  59. ifndef DYNAMIC_LIB_EXTENSION
  60. ifeq ($(OS_ARCH)$(OS_RELEASE), AIX4.1)
  61. DYNAMIC_LIB_EXTENSION = _shr
  62. else
  63. DYNAMIC_LIB_EXTENSION =
  64. endif
  65. endif
  66. ifndef STATIC_LIB_SUFFIX
  67. STATIC_LIB_SUFFIX = .$(LIB_SUFFIX)
  68. endif
  69. ifndef DYNAMIC_LIB_SUFFIX
  70. DYNAMIC_LIB_SUFFIX = .$(DLL_SUFFIX)
  71. endif
  72. ifndef IMPORT_LIB_SUFFIX
  73. ifeq ($(OS_ARCH), WINNT)
  74. IMPORT_LIB_SUFFIX = .$(LIB_SUFFIX)
  75. else
  76. IMPORT_LIB_SUFFIX = 
  77. endif
  78. endif
  79. ifndef PURE_LIB_SUFFIX
  80. ifeq ($(OS_ARCH), WINNT)
  81. PURE_LIB_SUFFIX =
  82. else
  83. ifdef DSO_BACKEND
  84. PURE_LIB_SUFFIX = .$(DLL_SUFFIX)
  85. else
  86. PURE_LIB_SUFFIX = .$(LIB_SUFFIX)
  87. endif
  88. endif
  89. endif
  90. ifndef STATIC_LIB_SUFFIX_FOR_LINKING
  91. STATIC_LIB_SUFFIX_FOR_LINKING = $(STATIC_LIB_SUFFIX)
  92. endif
  93. ifndef DYNAMIC_LIB_SUFFIX_FOR_LINKING
  94. ifeq ($(OS_ARCH), WINNT)
  95. DYNAMIC_LIB_SUFFIX_FOR_LINKING = $(IMPORT_LIB_SUFFIX)
  96. else
  97. DYNAMIC_LIB_SUFFIX_FOR_LINKING = $(DYNAMIC_LIB_SUFFIX)
  98. endif
  99. endif
  100. #
  101. # Program suffixes
  102. #
  103. ifndef PROG_SUFFIX
  104. ifeq ($(OS_ARCH), WINNT)
  105. PROG_SUFFIX = .exe
  106. else
  107.     ifeq ($(OS_ARCH), OS2)
  108. PROG_SUFFIX = .exe
  109.     else
  110. PROG_SUFFIX =
  111.     endif
  112. endif
  113. endif