tree.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" file system "release" prefixes             #
  30. #######################################################################
  31. # RELEASE_TREE = $(CORE_DEPTH)/../coredist
  32. ifndef RELEASE_TREE
  33. ifdef BUILD_SHIP
  34. ifdef USE_SHIPS 
  35. RELEASE_TREE = $(BUILD_SHIP)
  36. else
  37. RELEASE_TREE = /m/dist
  38. endif
  39. else
  40. RELEASE_TREE = /m/dist
  41. endif
  42. ifeq ($(OS_TARGET), WINNT)
  43. ifdef BUILD_SHIP
  44. ifdef USE_SHIPS
  45. RELEASE_TREE = $(NTBUILD_SHIP)
  46. else
  47. RELEASE_TREE = //iridium/components
  48. endif
  49. else
  50. RELEASE_TREE = //iridium/components
  51. endif
  52. endif
  53. ifeq ($(OS_TARGET), WIN95)
  54. ifdef BUILD_SHIP
  55. ifdef USE_SHIPS
  56. RELEASE_TREE = $(NTBUILD_SHIP)
  57. else
  58. RELEASE_TREE = //iridium/components
  59. endif
  60. else
  61. RELEASE_TREE = //iridium/components
  62. endif
  63. endif
  64. ifeq ($(OS_TARGET), WIN16)
  65. ifdef BUILD_SHIP
  66. ifdef USE_SHIPS
  67. RELEASE_TREE = $(NTBUILD_SHIP)
  68. else
  69. RELEASE_TREE = //iridium/components
  70. endif
  71. else
  72. RELEASE_TREE = //iridium/components
  73. endif
  74. endif
  75. endif
  76. #
  77. # NOTE:  export control policy enforced for XP and MD files
  78. #        released to the binary release tree
  79. #
  80. ifeq ($(POLICY), domestic)
  81. RELEASE_XP_DIR = domestic
  82. RELEASE_MD_DIR = domestic/$(PLATFORM)
  83. else
  84. ifeq ($(POLICY), export)
  85. RELEASE_XP_DIR = export
  86. RELEASE_MD_DIR = export/$(PLATFORM)
  87. else
  88. ifeq ($(POLICY), france)
  89. RELEASE_XP_DIR = france
  90. RELEASE_MD_DIR = france/$(PLATFORM)
  91. else
  92. RELEASE_XP_DIR = 
  93. RELEASE_MD_DIR = $(PLATFORM)
  94. endif
  95. endif
  96. endif
  97. REPORTER_TREE = $(subst ,\,$(RELEASE_TREE))
  98. IMPORT_XP_DIR = 
  99. IMPORT_MD_DIR = $(PLATFORM)