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


  58 #
  59 
  60 #
  61 # lint pass one enforcement
  62 #
  63 CFLAGS += $(CCVERBOSE)
  64 
  65 #
  66 #       depends on misc/ibtl, drv/ib and misc/ibmf
  67 #
  68 LDFLAGS += -dy -Nmisc/ibtl -Nmisc/ibmf
  69 
  70 #
  71 # For now, disable these lint checks; maintainers should endeavor
  72 # to investigate and remove these for maximum lint coverage.
  73 # Please do not carry these forward to new Makefiles.
  74 #
  75 LINTTAGS        += -erroff=E_STATIC_UNUSED
  76 LINTTAGS        += -erroff=E_BAD_PTR_CAST_ALIGN
  77 
  78 CERRWARN        += -_gcc=-Wno-uninitialized
  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 
  95 modlintlib:     $(MODLINTLIB_DEPS)
  96 
  97 clean.lint:     $(CLEAN_LINT_DEPS)
  98 


  58 #
  59 
  60 #
  61 # lint pass one enforcement
  62 #
  63 CFLAGS += $(CCVERBOSE)
  64 
  65 #
  66 #       depends on misc/ibtl, drv/ib and misc/ibmf
  67 #
  68 LDFLAGS += -dy -Nmisc/ibtl -Nmisc/ibmf
  69 
  70 #
  71 # For now, disable these lint checks; maintainers should endeavor
  72 # to investigate and remove these for maximum lint coverage.
  73 # Please do not carry these forward to new Makefiles.
  74 #
  75 LINTTAGS        += -erroff=E_STATIC_UNUSED
  76 LINTTAGS        += -erroff=E_BAD_PTR_CAST_ALIGN
  77 
  78 CERRWARN        += $(CNOWARN_UNINIT)
  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 
  95 modlintlib:     $(MODLINTLIB_DEPS)
  96 
  97 clean.lint:     $(CLEAN_LINT_DEPS)
  98