NCR3.0.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. # Config stuff for NCR SysVr4 v 3.0
  29. #
  30. include $(CORE_DEPTH)/coreconf/UNIX.mk
  31. DEFAULT_COMPILER = cc
  32. ###
  33. NS_USE_NATIVE = 1
  34. # NS_USE_GCC = 1
  35. export PATH:=$(PATH):/opt/ncc/bin
  36. ###
  37. RANLIB           = true
  38. GCC_FLAGS_EXTRA += -pipe
  39. DEFINES += -DSVR4 -DSYSV -DHAVE_STRERROR -DNCR
  40. OS_CFLAGS += -Hnocopyr -DSVR4 -DSYSV -DHAVE_STRERROR -DNCR -DPRFSTREAMS_BROKEN
  41. ifdef NS_USE_NATIVE
  42. CC       = cc
  43. CCC      = ncc
  44. CXX      = ncc
  45. # OS_LIBS += -L/opt/ncc/lib 
  46. else
  47. # OS_LIBS +=
  48. endif
  49. #OS_LIBS    += -lsocket -lnsl -ldl -lc
  50. MKSHLIB     += $(LD) $(DSO_LDOPTS)
  51. #DSO_LDOPTS += -G -z defs
  52. DSO_LDOPTS += -G
  53. CPU_ARCH    = x86
  54. ARCH        = ncr
  55. NOSUCHFILE  = /solaris-rm-f-sucks
  56. # now take care of default GCC (rus@5/5/97)
  57.  
  58. ifdef NS_USE_GCC
  59. # if gcc-settings are redefined already - don't touch it
  60. #
  61. ifeq (,$(findstring gcc, $(CC)))
  62. CC   = gcc
  63. CCC  = g++
  64. CXX  = g++
  65. # always use -fPIC - some makefiles are still broken and don't distinguish
  66. # situation when they build shared and static libraries
  67. CFLAGS  += -fPIC -Wall $(GCC_FLAGS_EXTRA)
  68. # OS_LIBS += -L/usr/local/lib -lstdc++ -lg++ -lgcc
  69. endif
  70. endif
  71. ###