makefile.win
上传用户: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. # An NMAKE file to set up and adjust NSS's build system for
  30. # Client build.  Client build should invoke NMAKE on this file
  31. # instead of invoking gmake directly.
  32. #
  33. DEPTH = ....
  34. include <$(DEPTH)configconfig.mak>
  35. GMAKE = gmake.exe
  36. GMAKE_FLAGS = OBJDIR_NAME=$(OBJDIR)
  37. #
  38. # The Client's debug build uses MSVC's debug runtime library (/MDd).
  39. #
  40. !ifndef MOZ_DEBUG
  41. GMAKE_FLAGS = $(GMAKE_FLAGS) BUILD_OPT=1
  42. !endif
  43. !if "$(MOZ_BITS)" == "16"
  44. GMAKE_FLAGS = $(GMAKE_FLAGS) OS_TARGET=WIN16
  45. !else
  46. GMAKE_FLAGS = $(GMAKE_FLAGS) OS_TARGET=WIN95
  47. !ifdef MOZ_DEBUG
  48. !ifndef MOZ_NO_DEBUG_RTL
  49. GMAKE_FLAGS = $(GMAKE_FLAGS) USE_DEBUG_RTL=1
  50. !endif
  51. !endif
  52. !endif
  53.  
  54. #
  55. # The rules.  Simply invoke gmake with the same target.
  56. # The default target is 'all'.  For Win16, set up the
  57. # environment to use the Watcom compiler, Watcom headers,
  58. # and Watcom libs.
  59. #
  60. all:: export libs install
  61. install:: moz_import
  62. depend::
  63. export libs install clobber clobber_all clean::
  64. !if "$(MOZ_BITS)" == "16"
  65. set PATH=%WATCPATH%
  66. set INCLUDE=%WATC_INC%
  67. set LIB=%WATC_LIB%
  68. !endif
  69. $(GMAKE) $(GMAKE_FLAGS) $@
  70. !if "$(MOZ_BITS)" == "16"
  71. set PATH=%MSVCPATH%
  72. set INCLUDE=%MSVC_INC%
  73. set LIB=%MSVC_LIB%
  74. !endif
  75. moz_import::
  76. copy $(DIST)libdbm32.lib $(DIST)libdbm.lib