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

CA认证

开发平台:

WINDOWS

  1. #! gmake
  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. CORE_DEPTH = ../..
  29. DEPTH = ../..
  30. include manifest.mn
  31. include $(CORE_DEPTH)/coreconf/config.mk
  32. # These sources were once in this directory, but now are gone.
  33. MISSING_SOURCES = 
  34. addcert.c 
  35. berparse.c 
  36. cert.c
  37. key.c
  38. key_rand.c 
  39. keygen.c 
  40. sec_fe.c 
  41. sec_read.c 
  42. secarb.c 
  43. secutil.c 
  44. $(NULL)
  45. # we don't build these any more, but the sources are still here
  46. OBSOLETE = 
  47. berdec.c 
  48. berdump.c 
  49. cypher.c 
  50. dumpcert.c 
  51. listcerts.c 
  52. mkdongle.c 
  53. p12exprt.c 
  54. p12imprt.c 
  55. rc4.c 
  56. sign.c 
  57. unwrap.c 
  58. vector.c 
  59. verify.c 
  60. wrap.c 
  61. $(NULL)
  62. # the base files for the executables
  63. # hey -- keep these alphabetical, please
  64. EXEC_SRCS = 
  65. $(NULL)
  66. # files that generate two separate objects and executables
  67. # BI_SRCS = 
  68. #  keyutil.c 
  69. #  p7env.c 
  70. #  tstclnt.c 
  71. #  $(NULL)
  72. # -I$(CORE_DEPTH)/security/lib/cert 
  73. # -I$(CORE_DEPTH)/security/lib/key 
  74. # -I$(CORE_DEPTH)/security/lib/util  
  75. INCLUDES += 
  76. -I$(DIST)/../public/security 
  77. -I./include 
  78. $(NULL)
  79. TBD_DIRS = rsh rshd rdist ssld
  80. # For the time being, sec stuff is export only
  81. # US_FLAGS = -DEXPORT_VERSION -DUS_VERSION
  82. US_FLAGS = -DEXPORT_VERSION
  83. EXPORT_FLAGS = -DEXPORT_VERSION
  84. BASE_LIBS = 
  85. $(DIST)/lib/libdbm.$(LIB_SUFFIX) 
  86. $(DIST)/lib/libxp.$(LIB_SUFFIX) 
  87. $(DIST)/lib/libnspr.$(LIB_SUFFIX) 
  88. $(NULL)
  89. # $(DIST)/lib/libpurenspr.$(LIB_SUFFIX) 
  90. #There is a circular dependancy in security/lib, and here is a gross fix
  91. SEC_LIBS = 
  92. $(DIST)/lib/libsecnav.$(LIB_SUFFIX) 
  93.         $(DIST)/lib/libssl.$(LIB_SUFFIX) 
  94.         $(DIST)/lib/libpkcs7.$(LIB_SUFFIX) 
  95.         $(DIST)/lib/libcert.$(LIB_SUFFIX) 
  96.         $(DIST)/lib/libkey.$(LIB_SUFFIX) 
  97. $(DIST)/lib/libsecmod.$(LIB_SUFFIX) 
  98.         $(DIST)/lib/libcrypto.$(LIB_SUFFIX) 
  99.         $(DIST)/lib/libsecutil.$(LIB_SUFFIX) 
  100.         $(DIST)/lib/libssl.$(LIB_SUFFIX) 
  101.         $(DIST)/lib/libpkcs7.$(LIB_SUFFIX) 
  102.         $(DIST)/lib/libcert.$(LIB_SUFFIX) 
  103.         $(DIST)/lib/libkey.$(LIB_SUFFIX) 
  104. $(DIST)/lib/libsecmod.$(LIB_SUFFIX) 
  105.         $(DIST)/lib/libcrypto.$(LIB_SUFFIX) 
  106.         $(DIST)/lib/libsecutil.$(LIB_SUFFIX) 
  107.         $(DIST)/lib/libhash.$(LIB_SUFFIX) 
  108. $(NULL)
  109. MYLIB = lib/$(OBJDIR)/libsectool.$(LIB_SUFFIX)
  110. US_LIBS = $(MYLIB) $(SEC_LIBS) $(BASE_LIBS) $(MYLIB) $(BASE_LIBS)
  111. EX_LIBS = $(MYLIB) $(SEC_LIBS) $(BASE_LIBS) $(MYLIB) $(BASE_LIBS) 
  112. REQUIRES = libxp nspr security
  113. CSRCS = $(EXEC_SRCS) $(BI_SRCS)
  114. OBJS = $(CSRCS:.c=.o) $(BI_SRCS:.c=-us.o) $(BI_SRCS:.c=-ex.o)
  115. PROGS = $(addprefix $(OBJDIR)/, $(EXEC_SRCS:.c=$(BIN_SUFFIX)))
  116. US_PROGS  = $(addprefix $(OBJDIR)/, $(BI_SRCS:.c=-us$(BIN_SUFFIX)))
  117. EX_PROGS = $(addprefix $(OBJDIR)/, $(BI_SRCS:.c=-ex$(BIN_SUFFIX)))
  118. NON_DIRS = $(PROGS) $(US_PROGS) $(EX_PROGS)
  119. TARGETS = $(NON_DIRS)
  120. include $(CORE_DEPTH)/coreconf/rules.mk
  121. ifneq ($(OS_ARCH),OS2)
  122. $(OBJDIR)/%-us.o: %.c
  123. @$(MAKE_OBJDIR)
  124. $(CCF) -o $@ $(US_FLAGS) -c $*.c
  125. $(OBJDIR)/%-ex.o: %.c
  126. @$(MAKE_OBJDIR)
  127. $(CCF) -o $@ $(EXPORT_FLAGS) -c $*.c
  128. $(OBJDIR)/%.o: %.c
  129. @$(MAKE_OBJDIR)
  130. $(CCF) -o $@ $(EXPORT_FLAGS) -c $*.c
  131. $(US_PROGS):$(OBJDIR)/%-us: $(OBJDIR)/%-us.o $(US_LIBS)
  132. @$(MAKE_OBJDIR)
  133. $(CCF) -o $@ $(OBJDIR)/$*-us.o $(LDFLAGS) $(US_LIBS) $(OS_LIBS)
  134. $(EX_PROGS):$(OBJDIR)/%-ex: $(OBJDIR)/%-ex.o $(EX_LIBS)
  135. @$(MAKE_OBJDIR)
  136. $(CCF) -o $@ $(OBJDIR)/$*-ex.o $(LDFLAGS) $(EX_LIBS) $(OS_LIBS)
  137. $(PROGS):$(OBJDIR)/%: $(OBJDIR)/%.o $(EX_LIBS)
  138. @$(MAKE_OBJDIR)
  139. $(CCF) -o $@ $@.o $(LDFLAGS) $(EX_LIBS) $(OS_LIBS)
  140. #install:: $(TARGETS)
  141. # $(INSTALL) $(TARGETS) $(DIST)/bin
  142. endif
  143. symbols::
  144. @echo "TARGETS = $(TARGETS)"