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

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. #
  29. # Configuration common to all versions of Windows NT
  30. # and Windows 95
  31. #
  32. DEFAULT_COMPILER = cl
  33. CC           = cl
  34. CCC          = cl
  35. LINK         = link
  36. AR           = lib
  37. AR          += -NOLOGO -OUT:"$@"
  38. RANLIB       = echo
  39. BSDECHO      = echo
  40. NSINSTALL_DIR  = $(CORE_DEPTH)/coreconf/nsinstall
  41. NSINSTALL      = nsinstall
  42. MKDEPEND_DIR    = $(CORE_DEPTH)/coreconf/mkdepend
  43. MKDEPEND        = $(MKDEPEND_DIR)/$(OBJDIR_NAME)/mkdepend.exe
  44. # Note: MKDEPENDENCIES __MUST__ be a relative pathname, not absolute.
  45. # If it is absolute, gmake will crash unless the named file exists.
  46. MKDEPENDENCIES  = $(OBJDIR_NAME)/depend.mk
  47. INSTALL      = $(NSINSTALL)
  48. MAKE_OBJDIR  = mkdir
  49. MAKE_OBJDIR += $(OBJDIR)
  50. RC           = rc.exe
  51. GARBAGE     += $(OBJDIR)/vc20.pdb $(OBJDIR)/vc40.pdb
  52. XP_DEFINE   += -DXP_PC
  53. LIB_SUFFIX   = lib
  54. DLL_SUFFIX   = dll
  55. ifdef BUILD_OPT
  56. OS_CFLAGS  += -MD
  57. OPTIMIZER  += -O2
  58. DEFINES    += -UDEBUG -U_DEBUG -DNDEBUG
  59. DLLFLAGS   += -OUT:"$@"
  60. else
  61. #
  62. # Define USE_DEBUG_RTL if you want to use the debug runtime library
  63. # (RTL) in the debug build
  64. #
  65. ifdef USE_DEBUG_RTL
  66. OS_CFLAGS += -MDd
  67. else
  68. OS_CFLAGS += -MD
  69. endif
  70. OPTIMIZER  += -Od -Z7
  71. #OPTIMIZER += -Zi -Fd$(OBJDIR)/ -Od
  72. DEFINES    += -DDEBUG -D_DEBUG -UNDEBUG -DDEBUG_$(USERNAME)
  73. DLLFLAGS   += -DEBUG -DEBUGTYPE:CV -OUT:"$@"
  74. LDFLAGS    += -DEBUG -DEBUGTYPE:CV
  75. endif
  76. DEFINES += -DWIN32
  77. #
  78. #  The following is NOT needed for the NSPR 2.0 library.
  79. #
  80. DEFINES += -D_WINDOWS
  81. # override default, which is ASFLAGS = CFLAGS
  82. AS = ml.exe
  83. ASFLAGS = -Cp -Sn -Zi -coff $(INCLUDES)