Print this page
11528 Makefile.noget can get gone
11529 Use -Wno-maybe-initialized


  54 ALL_TARGET      = $(BINARY)
  55 LINT_TARGET     = $(MODULE).lint
  56 INSTALL_TARGET  = $(BINARY) $(ROOTMODULE)
  57 
  58 #
  59 # Defined kgssapi and md5 as depdencies
  60 #
  61 LDFLAGS += -dy -N misc/kgssapi -N misc/md5
  62 
  63 #
  64 # For now, disable these lint checks; maintainers should endeavor
  65 # to investigate and remove these for maximum lint coverage.
  66 # Please do not carry these forward to new Makefiles.
  67 #
  68 LINTTAGS        += -erroff=E_SUPPRESSION_DIRECTIVE_UNUSED
  69 LINTTAGS        += -erroff=E_ASSIGN_NARROW_CONV
  70 LINTTAGS        += -erroff=E_STATIC_UNUSED
  71 
  72 CERRWARN        += -_gcc=-Wno-unused-function
  73 CERRWARN        += -_gcc=-Wno-unused-label
  74 CERRWARN        += -_gcc=-Wno-uninitialized
  75 CERRWARN        += -_gcc=-Wno-parentheses
  76 
  77 # needs work
  78 SMOFF += indenting
  79 
  80 #
  81 #       Default build targets.
  82 #
  83 .KEEP_STATE:
  84 
  85 def:            $(DEF_DEPS)
  86 
  87 all:            $(ALL_DEPS)
  88 
  89 clean:          $(CLEAN_DEPS)
  90 
  91 clobber:        $(CLOBBER_DEPS)
  92 
  93 lint:           $(LINT_DEPS)
  94 




  54 ALL_TARGET      = $(BINARY)
  55 LINT_TARGET     = $(MODULE).lint
  56 INSTALL_TARGET  = $(BINARY) $(ROOTMODULE)
  57 
  58 #
  59 # Defined kgssapi and md5 as depdencies
  60 #
  61 LDFLAGS += -dy -N misc/kgssapi -N misc/md5
  62 
  63 #
  64 # For now, disable these lint checks; maintainers should endeavor
  65 # to investigate and remove these for maximum lint coverage.
  66 # Please do not carry these forward to new Makefiles.
  67 #
  68 LINTTAGS        += -erroff=E_SUPPRESSION_DIRECTIVE_UNUSED
  69 LINTTAGS        += -erroff=E_ASSIGN_NARROW_CONV
  70 LINTTAGS        += -erroff=E_STATIC_UNUSED
  71 
  72 CERRWARN        += -_gcc=-Wno-unused-function
  73 CERRWARN        += -_gcc=-Wno-unused-label
  74 CERRWARN        += $(CNOWARN_UNINIT)
  75 CERRWARN        += -_gcc=-Wno-parentheses
  76 
  77 # needs work
  78 SMOFF += indenting
  79 
  80 #
  81 #       Default build targets.
  82 #
  83 .KEEP_STATE:
  84 
  85 def:            $(DEF_DEPS)
  86 
  87 all:            $(ALL_DEPS)
  88 
  89 clean:          $(CLEAN_DEPS)
  90 
  91 clobber:        $(CLOBBER_DEPS)
  92 
  93 lint:           $(LINT_DEPS)
  94