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

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. # win16_3.11.mk -- Make configuration for Win16
  30. #
  31. # This file configures gmake to build the Win16 variant of
  32. # NSPR 2.0. This file has the function of two files commonly
  33. # used on other platforms, for example: winnt.mk and
  34. # winnt4.0.mk. ... The packaging is easier and there is only
  35. # one variant of the Win16 target.
  36. # Win16 is built using the Watcom C/C++ version 11.0
  37. # compiler. You gotta set up the compiler first. 
  38. # The Watcom compiler depends on a few environment
  39. # variables; these environment variables define where the
  40. # compiler components are installed; they must be set before
  41. # running the make.
  42. # Notes:
  43. # OS_CFLAGS is the command line options for the compiler when
  44. #   building the .DLL object files.
  45. # OS_EXE_CFLAGS is the command line options for the compiler
  46. #   when building the .EXE object files; this is for the test
  47. #   programs.
  48. # the macro OS_CFLAGS is set to OS_EXE_CFLAGS inside of the
  49. #   makefile for the pr/tests directory. ... Hack.
  50. # -- configuration -----------------------------------------
  51. DEFAULT_COMPILER = wcc
  52. CC           = wcc
  53. CCC          = wcl
  54. LINK         = wlink
  55. AR           = wlib
  56. AR          += -q $@
  57. RC           = wrc.exe
  58. RC          += /r /dWIN16=1 /bt=windows
  59. RANLIB       = echo
  60. BSDECHO      = echo
  61. NSINSTALL_DIR  = $(CORE_DEPTH)/coreconf/nsinstall
  62. NSINSTALL      = nsinstall
  63. INSTALL      = $(NSINSTALL)
  64. MAKE_OBJDIR  = mkdir
  65. MAKE_OBJDIR += $(OBJDIR)
  66. XP_DEFINE   += -DXP_PC
  67. LIB_SUFFIX   = lib
  68. DLL_SUFFIX   = dll
  69. ifdef BUILD_OPT
  70. OPTIMIZER   = -oneatx -oh -oi -ei -3 -fpi87 -fp3
  71. else
  72. OPTIMIZER  += -d2 -hc -DDEBUG
  73. # OPTIMIZER  += -d2 -hw -DDEBUG
  74. # LDFLAGS  += -DEBUG -DEBUGTYPE:CV
  75. endif
  76. #
  77. # $(CPU_ARCH) has been commented out so that its contents
  78. # are not added to the WIN16_?.OBJ names thus expanding
  79. # them beyond the 8.3 character limit for this platform.
  80. #
  81. #CPU_ARCH       = x386
  82. #
  83. # added "-s" to avoid dependency on watcom's libs (e.g. on _STK)
  84. # added "-zt3" for compatibility with MSVC's "/Gt3" option
  85. #
  86. OS_CFLAGS     += -ml -3 -bd -zc -zu -bt=windows -s -zt3 -d_X86_ -dWIN16 -d_WINDLL 
  87. #OS_EXE_CFLAGS += -ml -3 -bt=windows -d_X86_ -dWIN16
  88. OS_LIB_FLAGS   = -c -iro
  89. # Name of the binary code directories
  90. OS_DLL_OPTION = CASEEXACT
  91. OS_DLLFLAGS  =
  92. OS_LIBS      =
  93. W16_EXPORTS  = #
  94. #
  95. #  The following is NOT needed for the NSPR 2.0 library.
  96. #
  97. OS_CFLAGS += -d_WINDOWS -d_MSC_VER=700