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


  73 
  74 #
  75 # dependency on scsi module
  76 #
  77 LDFLAGS += -dy -Nmisc/scsi
  78 
  79 #
  80 # For now, disable these lint checks; maintainers should endeavor
  81 # to investigate and remove these for maximum lint coverage.
  82 # Please do not carry these forward to new Makefiles.
  83 #
  84 LINTTAGS        += -erroff=E_BAD_PTR_CAST_ALIGN
  85 LINTTAGS        += -erroff=E_PTRDIFF_OVERFLOW
  86 LINTTAGS        += -erroff=E_ASSIGN_NARROW_CONV
  87 LINTTAGS        += -erroff=E_STATIC_UNUSED
  88 
  89 CERRWARN        += -_gcc=-Wno-parentheses
  90 CERRWARN        += -_gcc=-Wno-unused-label
  91 CERRWARN        += -_gcc=-Wno-unused-function
  92 CERRWARN        += -_gcc=-Wno-unused-variable
  93 CERRWARN        += -_gcc=-Wno-uninitialized
  94 CERRWARN        += -_gcc=-Wno-empty-body
  95 
  96 # needs work
  97 SMATCH=off
  98 
  99 #
 100 #       Default build targets.
 101 #
 102 .KEEP_STATE:
 103 
 104 def:            $(DEF_DEPS)
 105 
 106 all:            $(ALL_DEPS)
 107 
 108 clean:          $(CLEAN_DEPS)
 109 
 110 clobber:        $(CLOBBER_DEPS)
 111 
 112 lint:           $(LINT_DEPS)
 113 


  73 
  74 #
  75 # dependency on scsi module
  76 #
  77 LDFLAGS += -dy -Nmisc/scsi
  78 
  79 #
  80 # For now, disable these lint checks; maintainers should endeavor
  81 # to investigate and remove these for maximum lint coverage.
  82 # Please do not carry these forward to new Makefiles.
  83 #
  84 LINTTAGS        += -erroff=E_BAD_PTR_CAST_ALIGN
  85 LINTTAGS        += -erroff=E_PTRDIFF_OVERFLOW
  86 LINTTAGS        += -erroff=E_ASSIGN_NARROW_CONV
  87 LINTTAGS        += -erroff=E_STATIC_UNUSED
  88 
  89 CERRWARN        += -_gcc=-Wno-parentheses
  90 CERRWARN        += -_gcc=-Wno-unused-label
  91 CERRWARN        += -_gcc=-Wno-unused-function
  92 CERRWARN        += -_gcc=-Wno-unused-variable
  93 CERRWARN        += $(CNOWARN_UNINIT)
  94 CERRWARN        += -_gcc=-Wno-empty-body
  95 
  96 # needs work
  97 SMATCH=off
  98 
  99 #
 100 #       Default build targets.
 101 #
 102 .KEEP_STATE:
 103 
 104 def:            $(DEF_DEPS)
 105 
 106 all:            $(ALL_DEPS)
 107 
 108 clean:          $(CLEAN_DEPS)
 109 
 110 clobber:        $(CLOBBER_DEPS)
 111 
 112 lint:           $(LINT_DEPS)
 113