Makefile
上传用户:lyxiangda
上传日期:2007-01-12
资源大小:3042k
文件大小:4k
源码类别:

CA认证

开发平台:

WINDOWS

  1. #! gmake
  2. #
  3. # The contents of this file are subject to the Mozilla Public
  4. # License Version 1.1 (the "License"); you may not use this file
  5. # except in compliance with the License. You may obtain a copy of
  6. # the License at http://www.mozilla.org/MPL/
  7. # Software distributed under the License is distributed on an "AS
  8. # IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
  9. # implied. See the License for the specific language governing
  10. # rights and limitations under the License.
  11. # The Original Code is the Netscape security libraries.
  12. # The Initial Developer of the Original Code is Netscape
  13. # Communications Corporation.  Portions created by Netscape are 
  14. # Copyright (C) 1994-2000 Netscape Communications Corporation.  All
  15. # Rights Reserved.
  16. # Contributor(s):
  17. # Alternatively, the contents of this file may be used under the
  18. # terms of the GNU General Public License Version 2 or later (the
  19. # "GPL"), in which case the provisions of the GPL are applicable 
  20. # instead of those above.  If you wish to allow use of your 
  21. # version of this file only under the terms of the GPL and not to
  22. # allow others to use your version of this file under the MPL,
  23. # indicate your decision by deleting the provisions above and
  24. # replace them with the notice and other provisions required by
  25. # the GPL.  If you do not delete the provisions above, a recipient
  26. # may use your version of this file under either the MPL or the
  27. # GPL.
  28. #
  29. #######################################################################
  30. # (1) Include initial platform-independent assignments (MANDATORY).   #
  31. #######################################################################
  32. include manifest.mn
  33. #######################################################################
  34. # (2) Include "global" configuration information. (OPTIONAL)          #
  35. #######################################################################
  36. include $(CORE_DEPTH)/coreconf/config.mk
  37. #######################################################################
  38. # (3) Include "component" configuration information. (OPTIONAL)       #
  39. #######################################################################
  40. #######################################################################
  41. # (4) Include "local" platform-dependent assignments (OPTIONAL).      #
  42. #######################################################################
  43. ifeq ($(OS_TARGET),WINNT)
  44. NSPR_IMPORT_VERSION = v4.0.1
  45. else
  46. NSPR_IMPORT_VERSION = v4.0
  47. endif
  48. #######################################################################
  49. # (5) Execute "global" rules. (OPTIONAL)                              #
  50. #######################################################################
  51. include $(CORE_DEPTH)/coreconf/rules.mk
  52. #######################################################################
  53. # (6) Execute "component" rules. (OPTIONAL)                           #
  54. #######################################################################
  55. #######################################################################
  56. # (7) Execute "local" rules. (OPTIONAL).                              #
  57. #######################################################################
  58. moz_import::
  59. ifeq ($(OS_ARCH),WINNT)
  60. cp $(DIST)/../include/* $(DIST)/include
  61. ifdef BUILD_OPT
  62. cp $(DIST)/../WIN32_O.OBJ/lib/* $(DIST)/lib
  63. else
  64. cp $(DIST)/../WIN32_D.OBJ/lib/* $(DIST)/lib
  65. endif
  66. mv $(DIST)/lib/dbm32.lib $(DIST)/lib/dbm.lib
  67. else
  68. ifeq ($(OS_ARCH),OS2)
  69. cp -r $(DIST)/../include $(DIST)
  70. cp -r $(DIST)/../lib $(DIST)
  71. mv $(DIST)/lib/libmozdbm_s.$(LIB_SUFFIX) $(DIST)/lib/libdbm.$(LIB_SUFFIX)
  72. else
  73. $(NSINSTALL) -L ../../dist include $(DIST)
  74. $(NSINSTALL) -L ../../dist lib $(DIST)
  75. cp $(DIST)/lib/libmozdbm_s.$(LIB_SUFFIX) $(DIST)/lib/libdbm.$(LIB_SUFFIX)
  76. endif
  77. endif
  78. nsm:: all 
  79. cd ssm/lib/protocol; gmake
  80. cd ssm/server; gmake import; gmake
  81. nsm_rebuild:: 
  82. cd ssm/lib/protocol; gmake
  83. cd ssm/ui; gmake
  84. cd ssm/server; gmake import; gmake
  85. nsm_protocol: all
  86. cd ssm/lib/protocol; gmake
  87. nsm_ui: all
  88. cd ssm/ui; gmake
  89. nsm_gromit: nsm_protocol
  90. cd ssm/lib/client; gmake
  91. cd ssm/nav/gromit; gmake
  92. nsm_server: nsm_protocol nsm_ui
  93. cd ssm/server; gmake import; gmake
  94. coreconf_hack:
  95. cd ../coreconf; gmake
  96. gmake import
  97. nss_RelEng_bld: coreconf_hack
  98. # gmake import; gmake
  99. # cd ns/svrcore; gmake
  100. gmake
  101. nsm_RelEng_srvr_coreconf_import:
  102. gmake import
  103. nsm_RelEng_srvr_bld_Win: nsm_RelEng_srvr_coreconf_import nsm_server
  104. nsm_RelEng_srvr_bld: coreconf_hack nsm_server