UNIX.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. XP_DEFINE  += -DXP_UNIX
  29. LIB_SUFFIX  = a
  30. DLL_SUFFIX  = so
  31. AR          = ar
  32. AR         += cr $@
  33. LDOPTS     += -L$(SOURCE_LIB_DIR)
  34. ifdef BUILD_OPT
  35. OPTIMIZER  += -O
  36. DEFINES    += -UDEBUG -DNDEBUG
  37. else
  38. OPTIMIZER  += -g
  39. DEFINES    += -DDEBUG -UNDEBUG -DDEBUG_$(shell whoami)
  40. endif
  41. NSINSTALL_DIR  = $(CORE_DEPTH)/coreconf/nsinstall
  42. NSINSTALL      = $(NSINSTALL_DIR)/$(OBJDIR_NAME)/nsinstall
  43. MKDEPEND_DIR    = $(CORE_DEPTH)/coreconf/mkdepend
  44. MKDEPEND        = $(MKDEPEND_DIR)/$(OBJDIR_NAME)/mkdepend
  45. MKDEPENDENCIES  = $(OBJDIR_NAME)/depend.mk
  46. ####################################################################
  47. #
  48. # One can define the makefile variable NSDISTMODE to control
  49. # how files are published to the 'dist' directory.  If not
  50. # defined, the default is "install using relative symbolic
  51. # links".  The two possible values are "copy", which copies files
  52. # but preserves source mtime, and "absolute_symlink", which
  53. # installs using absolute symbolic links.  The "absolute_symlink"
  54. # option requires NFSPWD.
  55. #   - THIS IS NOT PART OF THE NEW BINARY RELEASE PLAN for 9/30/97
  56. #   - WE'RE KEEPING IT ONLY FOR BACKWARDS COMPATIBILITY
  57. ####################################################################
  58. ifeq ($(NSDISTMODE),copy)
  59. # copy files, but preserve source mtime
  60. INSTALL  = $(NSINSTALL)
  61. INSTALL += -t
  62. else
  63. ifeq ($(NSDISTMODE),absolute_symlink)
  64. # install using absolute symbolic links
  65. INSTALL  = $(NSINSTALL)
  66. INSTALL += -L `$(NFSPWD)`
  67. else
  68. # install using relative symbolic links
  69. INSTALL  = $(NSINSTALL)
  70. INSTALL += -R
  71. endif
  72. endif
  73. define MAKE_OBJDIR
  74. if test ! -d $(@D); then rm -rf $(@D); $(NSINSTALL) -D $(@D); fi
  75. endef