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


  56 LINT_TARGET     = $(MODULE).lint
  57 INSTALL_TARGET  = $(BINARY) $(ROOTMODULE) $(ROOTLINK) $(ROOT_CONFFILE)
  58 
  59 #
  60 # lint pass one enforcement
  61 #
  62 CFLAGS          += $(CCVERBOSE)
  63 
  64 LDFLAGS         += -dy -Nmisc/md5 -Nmisc/kcf
  65 
  66 #
  67 # For now, disable these lint checks; maintainers should endeavor
  68 # to investigate and remove these for maximum lint coverage.
  69 # Please do not carry these forward to new Makefiles.
  70 #
  71 LINTTAGS        += -erroff=E_BAD_PTR_CAST_ALIGN
  72 LINTTAGS        += -erroff=E_PTRDIFF_OVERFLOW
  73 LINTTAGS        += -erroff=E_ASSIGN_NARROW_CONV
  74 LINTTAGS        += -erroff=E_STATIC_UNUSED
  75 
  76 CERRWARN        += -_gcc=-Wno-uninitialized
  77 
  78 #
  79 #       Default build targets.
  80 #
  81 .KEEP_STATE:
  82 
  83 def:            $(DEF_DEPS)
  84 
  85 all:            $(ALL_DEPS)
  86 
  87 clean:          $(CLEAN_DEPS)
  88 
  89 clobber:        $(CLOBBER_DEPS)
  90 
  91 lint:           $(LINT_DEPS)
  92 
  93 modlintlib:     $(MODLINTLIB_DEPS)
  94 
  95 clean.lint:     $(CLEAN_LINT_DEPS)
  96 


  56 LINT_TARGET     = $(MODULE).lint
  57 INSTALL_TARGET  = $(BINARY) $(ROOTMODULE) $(ROOTLINK) $(ROOT_CONFFILE)
  58 
  59 #
  60 # lint pass one enforcement
  61 #
  62 CFLAGS          += $(CCVERBOSE)
  63 
  64 LDFLAGS         += -dy -Nmisc/md5 -Nmisc/kcf
  65 
  66 #
  67 # For now, disable these lint checks; maintainers should endeavor
  68 # to investigate and remove these for maximum lint coverage.
  69 # Please do not carry these forward to new Makefiles.
  70 #
  71 LINTTAGS        += -erroff=E_BAD_PTR_CAST_ALIGN
  72 LINTTAGS        += -erroff=E_PTRDIFF_OVERFLOW
  73 LINTTAGS        += -erroff=E_ASSIGN_NARROW_CONV
  74 LINTTAGS        += -erroff=E_STATIC_UNUSED
  75 
  76 CERRWARN        += $(CNOWARN_UNINIT)
  77 
  78 #
  79 #       Default build targets.
  80 #
  81 .KEEP_STATE:
  82 
  83 def:            $(DEF_DEPS)
  84 
  85 all:            $(ALL_DEPS)
  86 
  87 clean:          $(CLEAN_DEPS)
  88 
  89 clobber:        $(CLOBBER_DEPS)
  90 
  91 lint:           $(LINT_DEPS)
  92 
  93 modlintlib:     $(MODLINTLIB_DEPS)
  94 
  95 clean.lint:     $(CLEAN_LINT_DEPS)
  96