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

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 <component>-specific source import/export directories        #
  30. #######################################################################
  31. #
  32. # <user_source_tree> master import/export directory prefix
  33. #
  34. SOURCE_PREFIX = $(CORE_DEPTH)/../dist
  35. ifdef MOZILLA_CLIENT
  36. SOURCE_PREFIX = $(CORE_DEPTH)/../mozilla/dist
  37. endif
  38. #
  39. # <user_source_tree> cross-platform (xp) master import/export directory
  40. #
  41. SOURCE_XP_DIR        = $(SOURCE_PREFIX)
  42. #
  43. # <user_source_tree> cross-platform (xp) import/export directories
  44. #
  45. SOURCE_CLASSES_DIR     = $(SOURCE_XP_DIR)/classes
  46. SOURCE_CLASSES_DBG_DIR = $(SOURCE_XP_DIR)/classes_DBG
  47. SOURCE_XPHEADERS_DIR   = $(SOURCE_XP_DIR)/public/$(MODULE)
  48. SOURCE_XPPRIVATE_DIR   = $(SOURCE_XP_DIR)/private/$(MODULE)
  49. ifdef BUILD_OPT
  50. IMPORT_XPCLASS_DIR = $(SOURCE_CLASSES_DIR)
  51. else
  52. IMPORT_XPCLASS_DIR = $(SOURCE_CLASSES_DBG_DIR)
  53. endif
  54. #
  55. # <user_source_tree> machine-dependent (md) master import/export directory
  56. #
  57. SOURCE_MD_DIR        = $(SOURCE_PREFIX)/$(PLATFORM)
  58. #
  59. # <user_source_tree> machine-dependent (md) import/export directories
  60. #
  61. SOURCE_BIN_DIR       = $(SOURCE_MD_DIR)/bin
  62. SOURCE_LIB_DIR       = $(SOURCE_MD_DIR)/lib
  63. SOURCE_MDHEADERS_DIR = $(SOURCE_MD_DIR)/include
  64. #######################################################################
  65. # Master <component>-specific source release directories and files    #
  66. #######################################################################
  67. #
  68. # <user_source_tree> source-side master release directory prefix
  69. # NOTE:  export control policy enforced for XP and MD files released to
  70. #        the staging area
  71. #
  72. ifeq ($(POLICY), domestic)
  73. SOURCE_RELEASE_PREFIX = $(SOURCE_PREFIX)/release/domestic
  74. else
  75. ifeq ($(POLICY), export)
  76. SOURCE_RELEASE_PREFIX = $(SOURCE_PREFIX)/release/export
  77. else
  78. ifeq ($(POLICY), france)
  79. SOURCE_RELEASE_PREFIX = $(SOURCE_PREFIX)/release/france
  80. else
  81. #We shouldn't have to put another directory under here, but without it the perl
  82. #script for releasing doesn't find the directory. It thinks it doesn't exist.
  83. #So we're adding this no-policy directory so that the script for releasing works
  84. #in all casese when policy is not set. This doesn't affect where the final jar
  85. #files land, only where they are placed in the local tree when building the jar
  86. #files. When there is no policy, the jar files will still land in
  87. #<dist>/<module>/<date>/<platform> like they used to.
  88. SOURCE_RELEASE_PREFIX = $(SOURCE_PREFIX)/release/no-policy
  89. endif
  90. endif
  91. endif
  92. #
  93. # <user_source_tree> cross-platform (xp) source-side master release directory
  94. #
  95. SOURCE_RELEASE_XP_DIR = $(SOURCE_RELEASE_PREFIX)
  96. #
  97. # <user_source_tree> cross-platform (xp) source-side release directories
  98. #
  99. SOURCE_RELEASE_CLASSES_DIR     = classes
  100. SOURCE_RELEASE_CLASSES_DBG_DIR = classes_DBG
  101. SOURCE_RELEASE_XPHEADERS_DIR   = include
  102. #
  103. # <user_source_tree> cross-platform (xp) JAR source-side release files
  104. #
  105. XPCLASS_JAR     = xpclass.jar
  106. XPCLASS_DBG_JAR = xpclass_dbg.jar
  107. XPHEADER_JAR    = xpheader.jar
  108. ifdef BUILD_OPT
  109. IMPORT_XPCLASS_JAR = $(XPCLASS_JAR)
  110. else
  111. IMPORT_XPCLASS_JAR = $(XPCLASS_DBG_JAR)
  112. endif
  113. #
  114. # <user_source_tree> machine-dependent (md) source-side master release directory
  115. #
  116. SOURCE_RELEASE_MD_DIR = $(PLATFORM)
  117. #
  118. # <user_source_tree> machine-dependent (md) source-side release directories
  119. #
  120. SOURCE_RELEASE_BIN_DIR       = $(PLATFORM)/bin
  121. SOURCE_RELEASE_LIB_DIR       = $(PLATFORM)/lib
  122. SOURCE_RELEASE_MDHEADERS_DIR = $(PLATFORM)/include
  123. SOURCE_RELEASE_SPEC_DIR      = $(SOURCE_RELEASE_MD_DIR)
  124. #
  125. # <user_source_tree> machine-dependent (md) JAR/tar source-side release files
  126. #
  127. MDBINARY_JAR = mdbinary.jar
  128. MDHEADER_JAR = mdheader.jar
  129. # Where to put the results
  130. ifneq ($(RESULTS_DIR),)
  131. RESULTS_DIR = $(RELEASE_TREE)/sectools/results
  132. endif