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


  63 LINT_TARGET     = $(MODULE).lint
  64 INSTALL_TARGET  = $(BINARY) $(ROOTMODULE) $(ROOTLINK)
  65 
  66 #
  67 # Linkage dependencies
  68 #
  69 LDFLAGS         += -dy -Nmisc/kcf
  70 
  71 CPPFLAGS        += -I$(COM_DIR)
  72 
  73 #
  74 # For now, disable these lint checks; maintainers should endeavor
  75 # to investigate and remove these for maximum lint coverage.
  76 # Please do not carry these forward to new Makefiles.
  77 #
  78 LINTTAGS        += -erroff=E_BAD_PTR_CAST_ALIGN
  79 LINTTAGS        += -erroff=E_SUPPRESSION_DIRECTIVE_UNUSED
  80 LINTTAGS        += -erroff=E_ASSIGN_NARROW_CONV
  81 
  82 CERRWARN        += -_gcc=-Wno-parentheses
  83 CERRWARN        += -_gcc=-Wno-uninitialized
  84 
  85 #
  86 #       Default build targets.
  87 #
  88 .KEEP_STATE:
  89 
  90 def:            $(DEF_DEPS)
  91 
  92 all:            $(ALL_DEPS)
  93 
  94 clean:          $(CLEAN_DEPS)
  95 
  96 clobber:        $(CLOBBER_DEPS)
  97 
  98 lint:           $(LINT_DEPS)
  99 
 100 modlintlib:     $(MODLINTLIB_DEPS)
 101 
 102 clean.lint:     $(CLEAN_LINT_DEPS)
 103 


  63 LINT_TARGET     = $(MODULE).lint
  64 INSTALL_TARGET  = $(BINARY) $(ROOTMODULE) $(ROOTLINK)
  65 
  66 #
  67 # Linkage dependencies
  68 #
  69 LDFLAGS         += -dy -Nmisc/kcf
  70 
  71 CPPFLAGS        += -I$(COM_DIR)
  72 
  73 #
  74 # For now, disable these lint checks; maintainers should endeavor
  75 # to investigate and remove these for maximum lint coverage.
  76 # Please do not carry these forward to new Makefiles.
  77 #
  78 LINTTAGS        += -erroff=E_BAD_PTR_CAST_ALIGN
  79 LINTTAGS        += -erroff=E_SUPPRESSION_DIRECTIVE_UNUSED
  80 LINTTAGS        += -erroff=E_ASSIGN_NARROW_CONV
  81 
  82 CERRWARN        += -_gcc=-Wno-parentheses
  83 CERRWARN        += $(CNOWARN_UNINIT)
  84 
  85 #
  86 #       Default build targets.
  87 #
  88 .KEEP_STATE:
  89 
  90 def:            $(DEF_DEPS)
  91 
  92 all:            $(ALL_DEPS)
  93 
  94 clean:          $(CLEAN_DEPS)
  95 
  96 clobber:        $(CLOBBER_DEPS)
  97 
  98 lint:           $(LINT_DEPS)
  99 
 100 modlintlib:     $(MODLINTLIB_DEPS)
 101 
 102 clean.lint:     $(CLEAN_LINT_DEPS)
 103