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

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. CORE_DEPTH = ../../..
  28. include manifest.mn
  29. include $(CORE_DEPTH)/coreconf/config.mk
  30. #  $(NULL)
  31. INCLUDES += 
  32. -I$(DIST)/../public/security 
  33. -I$(DIST)/../private/security 
  34. -I$(DEPTH)/security/lib/cert 
  35. -I$(DEPTH)/security/lib/key 
  36. -I$(DEPTH)/security/lib/util  
  37. -I./include 
  38. $(NULL)
  39. # For the time being, sec stuff is export only
  40. # US_FLAGS = -DEXPORT_VERSION -DUS_VERSION
  41. US_FLAGS = -DEXPORT_VERSION
  42. EXPORT_FLAGS = -DEXPORT_VERSION
  43. BASE_LIBS = 
  44. $(DIST)/lib/libdbm.$(LIB_SUFFIX) 
  45. $(DIST)/lib/libxp.$(LIB_SUFFIX) 
  46. $(DIST)/lib/libnspr.$(LIB_SUFFIX) 
  47. $(NULL)
  48. # $(DIST)/lib/libpurenspr.$(LIB_SUFFIX) 
  49. #There are a circular dependancies in security/lib, and we deal with it by 
  50. # double linking some libraries
  51. SEC_LIBS = 
  52. $(DIST)/lib/libsecnav.$(LIB_SUFFIX) 
  53.         $(DIST)/lib/libssl.$(LIB_SUFFIX) 
  54.         $(DIST)/lib/libpkcs7.$(LIB_SUFFIX) 
  55.         $(DIST)/lib/libcert.$(LIB_SUFFIX) 
  56.         $(DIST)/lib/libkey.$(LIB_SUFFIX) 
  57. $(DIST)/lib/libsecmod.$(LIB_SUFFIX) 
  58.         $(DIST)/lib/libcrypto.$(LIB_SUFFIX) 
  59.         $(DIST)/lib/libsecutil.$(LIB_SUFFIX) 
  60.         $(DIST)/lib/libssl.$(LIB_SUFFIX) 
  61.         $(DIST)/lib/libpkcs7.$(LIB_SUFFIX) 
  62.         $(DIST)/lib/libcert.$(LIB_SUFFIX) 
  63.         $(DIST)/lib/libkey.$(LIB_SUFFIX) 
  64. $(DIST)/lib/libsecmod.$(LIB_SUFFIX) 
  65.         $(DIST)/lib/libcrypto.$(LIB_SUFFIX) 
  66.         $(DIST)/lib/libsecutil.$(LIB_SUFFIX) 
  67.         $(DIST)/lib/libhash.$(LIB_SUFFIX) 
  68. $(NULL)
  69. MYLIB = lib/$(OBJDIR)/libsectool.$(LIB_SUFFIX)
  70. US_LIBS = $(MYLIB) $(SEC_LIBS) $(BASE_LIBS) $(MYLIB) $(BASE_LIBS)
  71. EX_LIBS = $(MYLIB) $(SEC_LIBS) $(BASE_LIBS) $(MYLIB) $(BASE_LIBS) 
  72. REQUIRES = libxp nspr security
  73. CSRCS = $(EXEC_SRCS) $(BI_SRCS)
  74. OBJS = $(CSRCS:.c=.o) $(BI_SRCS:.c=-us.o) $(BI_SRCS:.c=-ex.o)
  75. PROGS = $(addprefix $(OBJDIR)/, $(EXEC_SRCS:.c=$(BIN_SUFFIX)))
  76. US_PROGS  = $(addprefix $(OBJDIR)/, $(BI_SRCS:.c=-us$(BIN_SUFFIX)))
  77. EX_PROGS = $(addprefix $(OBJDIR)/, $(BI_SRCS:.c=-ex$(BIN_SUFFIX)))
  78. NON_DIRS = $(PROGS) $(US_PROGS) $(EX_PROGS)
  79. TARGETS = $(NON_DIRS)
  80. include $(CORE_DEPTH)/coreconf/rules.mk
  81. symbols::
  82. @echo "TARGETS = $(TARGETS)"