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

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. # Config stuff for WINNT 3.51
  30. #
  31. # This makefile defines the following variables:
  32. # CPU_ARCH, OS_CFLAGS, and OS_DLLFLAGS.
  33. # It has the following internal variables:
  34. # OS_PROC_CFLAGS and OS_WIN_CFLAGS.
  35. include $(CORE_DEPTH)/coreconf/WIN32.mk
  36. PROCESSOR := $(shell uname -p)
  37. ifeq ($(PROCESSOR), I386)
  38. CPU_ARCH        = x386
  39. OS_PROC_CFLAGS += -D_X86_
  40. else 
  41. ifeq ($(PROCESSOR), MIPS)
  42. CPU_ARCH        = MIPS
  43. OS_PROC_CFLAGS += -D_MIPS_
  44. else 
  45. ifeq ($(PROCESSOR), ALPHA)
  46. CPU_ARCH        = ALPHA
  47. OS_PROC_CFLAGS += -D_ALPHA_
  48. else 
  49. CPU_ARCH  = processor_is_undefined
  50. endif
  51. endif
  52. endif
  53. OS_WIN_CFLAGS += -W3
  54. OS_CFLAGS     += -nologo $(OS_WIN_CFLAGS) $(OS_PROC_CFLAGS)
  55. #OS_DLLFLAGS  += -nologo -DLL -PDB:NONE -SUBSYSTEM:WINDOWS
  56. OS_DLLFLAGS   += -nologo -DLL -PDB:NONE -SUBSYSTEM:WINDOWS
  57. #
  58. # Win NT needs -GT so that fibers can work
  59. #
  60. OS_CFLAGS     += -GT
  61. OS_CFLAGS     += -DWINNT