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

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. # can't do this in manifest.mn because OS_ARCH isn't defined there.
  29. ifeq ($(OS_ARCH), WINNT)
  30. # $(PROGRAM) has explicit dependencies on $(EXTRA_LIBS)
  31. CRYPTOLIB=$(DIST)/lib/freebl.lib
  32. ifdef MOZILLA_SECURITY_BUILD
  33. CRYPTOLIB=$(DIST)/lib/crypto.lib
  34. endif
  35. ifdef MOZILLA_BSAFE_BUILD
  36. CRYPTOLIB+=$(DIST)/lib/bsafe$(BSAFEVER).lib
  37. CRYPTOLIB+=$(DIST)/lib/freebl.lib
  38. endif
  39. EXTRA_LIBS += 
  40. $(DIST)/lib/smime.lib 
  41. $(DIST)/lib/ssl.lib 
  42. $(DIST)/lib/jar.lib 
  43. $(DIST)/lib/zlib.lib 
  44. $(DIST)/lib/nss.lib 
  45. $(DIST)/lib/ssl.lib 
  46. $(DIST)/lib/sectool.lib 
  47. $(DIST)/lib/pkcs7.lib 
  48. $(DIST)/lib/certhi.lib 
  49. $(DIST)/lib/cryptohi.lib 
  50. $(DIST)/lib/pk11wrap.lib 
  51. $(DIST)/lib/certdb.lib 
  52. $(DIST)/lib/softoken.lib 
  53. $(CRYPTOLIB) 
  54. $(DIST)/lib/swfci.lib 
  55. $(DIST)/lib/secutil.lib 
  56. $(DIST)/lib/dbm.lib 
  57. $(DIST)/lib/$(NSPR31_LIB_PREFIX)plc4.lib 
  58. $(DIST)/lib/$(NSPR31_LIB_PREFIX)plds4.lib 
  59. $(DIST)/lib/$(NSPR31_LIB_PREFIX)nspr4.lib 
  60. $(NULL)
  61. # $(PROGRAM) has NO explicit dependencies on $(OS_LIBS)
  62. OS_LIBS += 
  63. wsock32.lib 
  64. winmm.lib 
  65. $(NULL)
  66. else
  67. # $(PROGRAM) has explicit dependencies on $(EXTRA_LIBS)
  68. CRYPTOLIB=$(DIST)/lib/libfreebl.$(LIB_SUFFIX)
  69. ifdef MOZILLA_SECURITY_BUILD
  70. CRYPTOLIB=$(DIST)/lib/libcrypto.$(LIB_SUFFIX)
  71. endif
  72. ifdef MOZILLA_BSAFE_BUILD
  73. CRYPTOLIB+=$(DIST)/lib/libbsafe.$(LIB_SUFFIX)
  74. CRYPTOLIB+=$(DIST)/lib/libfreebl.$(LIB_SUFFIX)
  75. endif
  76. EXTRA_LIBS += 
  77. $(DIST)/lib/libsmime.$(LIB_SUFFIX) 
  78. $(DIST)/lib/libssl.$(LIB_SUFFIX) 
  79. $(DIST)/lib/libjar.$(LIB_SUFFIX) 
  80. $(DIST)/lib/libzlib.$(LIB_SUFFIX) 
  81. $(DIST)/lib/libnss.$(LIB_SUFFIX) 
  82. $(DIST)/lib/libssl.$(LIB_SUFFIX) 
  83. $(DIST)/lib/libsectool.$(LIB_SUFFIX) 
  84. $(DIST)/lib/libpkcs7.$(LIB_SUFFIX) 
  85. $(DIST)/lib/libcerthi.$(LIB_SUFFIX) 
  86. $(DIST)/lib/libpk11wrap.$(LIB_SUFFIX) 
  87. $(DIST)/lib/libcryptohi.$(LIB_SUFFIX) 
  88. $(DIST)/lib/libcerthi.$(LIB_SUFFIX) 
  89. $(DIST)/lib/libpk11wrap.$(LIB_SUFFIX) 
  90. $(DIST)/lib/libsoftoken.$(LIB_SUFFIX) 
  91. $(DIST)/lib/libcertdb.$(LIB_SUFFIX) 
  92. $(DIST)/lib/libswfci.$(LIB_SUFFIX) 
  93. $(CRYPTOLIB) 
  94. $(DIST)/lib/libsecutil.$(LIB_SUFFIX) 
  95. $(DIST)/lib/libdbm.$(LIB_SUFFIX) 
  96. $(NULL)
  97. # $(PROGRAM) has NO explicit dependencies on $(EXTRA_SHARED_LIBS)
  98. # $(EXTRA_SHARED_LIBS) come before $(OS_LIBS), except on AIX.
  99. EXTRA_SHARED_LIBS += 
  100. -L$(DIST)/lib/ 
  101. -lplc4 
  102. -lplds4 
  103. -lnspr4 
  104. $(NULL)
  105. endif