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

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. include manifest.mn
  29. include $(CORE_DEPTH)/coreconf/config.mk
  30. #SWCILIB = ../$(OBJDIR)/$(LIB_PREFIX)swfci.$(LIB_SUFFIX)
  31. # can't do this in manifest.mn because OS_ARCH isn't defined there.
  32. ifeq ($(OS_ARCH), WINNT)
  33. CRYPTO_LIB = $(DIST)/lib/freebl.lib 
  34. ifdef MOZILLA_SECURITY_BUILD
  35. CRYPTO_LIB = $(DIST)/lib/crypto.lib
  36. endif
  37. ifdef MOZILLA_BSAFE_BUILD
  38. CRYPTO_LIB += $(DIST)/lib/bsafe$(BSAFEVER).lib
  39. CRYPTO_LIB += $(DIST)/lib/freebl.lib 
  40. endif
  41. # $(DIST)/lib/dbm.lib 
  42. # $(DIST)/lib/$(NSPR31_LIB_PREFIX)nspr4.lib 
  43. EXTRA_LIBS = 
  44. $(DIST)/lib/swfci.lib 
  45. $(DIST)/lib/softoken.lib 
  46. $(CRYPTO_LIB) 
  47. $(DIST)/lib/secutil.lib 
  48. $(DIST)/lib/$(NSPR31_LIB_PREFIX)plc4_s.lib 
  49. $(DIST)/lib/$(NSPR31_LIB_PREFIX)plds4_s.lib 
  50. wsock32.lib 
  51. winmm.lib 
  52. $(NULL)
  53. else
  54. # $(DIST)/lib/libdbm.a 
  55. # $(DIST)/lib/libnspr3.a 
  56. # OSF 1 linker is very agressive. It includes the entire archive,
  57. # not just the .o's that we need from that archive.
  58. #
  59. ifneq ($(OS_ARCH), OSF1)
  60. CRYPTO_LIB = $(DIST)/lib/libfreebl.$(LIB_SUFFIX) 
  61. ifdef MOZILLA_SECURITY_BUILD
  62. CRYPTO_LIB = $(DIST)/lib/libcrypto.$(LIB_SUFFIX)
  63. endif
  64. ifdef MOZILLA_BSAFE_BUILD
  65. CRYPTO_LIB += $(DIST)/lib/libbsafe.$(LIB_SUFFIX)
  66. CRYPTO_LIB += $(DIST)/lib/libfreebl.$(LIB_SUFFIX)
  67. endif
  68. ifeq ($(OS_ARCH), OS2)
  69. PLC_STATIC_LIB = $(DIST)/lib/plc4.$(LIB_SUFFIX)
  70. PLDS_STATIC_LIB = $(DIST)/lib/plds4.$(LIB_SUFFIX)
  71. else
  72. PLC_STATIC_LIB = $(DIST)/lib/libplc4.$(LIB_SUFFIX)
  73. PLDS_STATIC_LIB = $(DIST)/lib/libplds4.$(LIB_SUFFIX)
  74. endif
  75. EXTRA_LIBS += 
  76. $(DIST)/lib/libswfci.$(LIB_SUFFIX) 
  77. $(DIST)/lib/libsoftoken.$(LIB_SUFFIX) 
  78. $(CRYPTO_LIB) 
  79. $(DIST)/lib/libsecutil.$(LIB_SUFFIX) 
  80. $(PLC_STATIC_LIB) 
  81. $(PLDS_STATIC_LIB) 
  82. $(NULL)
  83. endif
  84. endif
  85. #ifeq ($(OS_TARGET), WIN16)
  86. #W16LIBS         += $(SWCILIB)
  87. #else
  88. #OBJS      += $(SWCILIB)
  89. #endif
  90. INST_JS                 = inst.js
  91. LIBCI_JAR               = $(OBJDIR)/lib$(LIBRARY_NAME).jar
  92. LIBCI_JAR_SRC           = $(INST_JS) pk11inst $(SHARED_LIBRARY)
  93. ifneq ($(OS_TARGET), WIN16)
  94. TARGETS : $(LIBCI_JAR)
  95. endif
  96. ifeq ($(OS_TARGET), WIN16)
  97. # note that rules.mk is not included below for WIN16
  98. all:
  99. @echo Skipping fortcrypt directory for 16-bit windows builds
  100. all_platforms alltags clean clobber clobber_all realclean: all
  101. boot export install libs program release: all
  102. endif
  103. #$(SHARED_LIBRARY): $(SWCILIB)
  104. forsock.c: ../../forsock.c $(CP_INCLUDES)
  105. cp ../../forsock.c $(CP_INCLUDES) .
  106. fortpk11.c: ../../fortpk11.c
  107. cp ../../fortpk11.c .
  108. fmutex.c: ../../fmutex.c
  109. cp ../../fmutex.c  .
  110. #
  111. # The following rules packages the shared library into a JAR,
  112. # ready to be signed
  113. #
  114. $(OBJDIR)/replace: replace.c
  115. $(CC) -o $@ $<
  116. # ZIP options:
  117. # -5 means medium compression
  118. # -q means quiet
  119. # -j means do not store tree structure, all files go into one dir
  120. #
  121. $(LIBCI_JAR): $(LIBCI_JAR_SRC)
  122. @echo +++ building $@ from $(LIBCI_JAR_SRC)
  123. @rm -f $@
  124. zip -5qj $@ $(LIBCI_JAR_SRC) 
  125. $(LIBSWCI_JAR): $(LIBSWCI_JAR_SRC)
  126. @echo +++ building $@ from $(LIBSWCI_JAR_SRC)
  127. @rm -f $@
  128. zip -5qj $@ $(LIBSWCI_JAR_SRC) 
  129. MD_FILES += $(LIBCI_JAR) $(LIBSWCI_JAR)
  130. # coreconf doesn't build the AIX shared library for FORTEZZA,
  131. # so I'm going to override their shared library command and build the shared
  132. # library the way config used to.
  133. #
  134. ifeq ($(OS_ARCH)$(OS_RELEASE), AIX4.1)
  135. DSO_LDOPTS              = -bM:SRE -bh:4 -bnoentry
  136. EXTRA_DSO_LDOPTS        = -lc
  137. MKSHLIB                 = xlC $(DSO_LDOPTS)
  138. $(SHARED_LIBRARY): $(OBJS)
  139. @$(MAKE_OBJDIR)
  140. rm -f $@
  141. $(MKSHLIB) -o $@ $(OBJS) $(EXTRA_LIBS) $(EXTRA_DSO_LDOPTS)
  142. chmod +x $@
  143. endif
  144. ifeq ($(OS_ARCH)$(OS_RELEASE), AIX4.2)
  145. LD      += -G
  146. endif 
  147. ifneq ($(OS_TARGET), WIN16)
  148. include $(CORE_DEPTH)/coreconf/rules.mk
  149. endif