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


  53 #
  54 #       Define targets
  55 #
  56 ALL_TARGET      = $(BINARY)
  57 LINT_TARGET     = $(MODULE).lint
  58 INSTALL_TARGET  = $(BINARY) $(ROOTMODULE)
  59 
  60 #
  61 #       Overrides.
  62 #
  63 DEBUG_FLGS      =
  64 DEBUG_DEFS      += $(DEBUG_FLGS)
  65 
  66 #
  67 # lint pass one enforcement
  68 #
  69 CFLAGS += $(CCVERBOSE)
  70 
  71 CERRWARN        += -_gcc=-Wno-parentheses
  72 CERRWARN        += -_gcc=-Wno-unused-label
  73 CERRWARN        += -_gcc=-Wno-uninitialized
  74 
  75 #
  76 #
  77 # we depend on the sata module
  78 LDFLAGS += -dy -N misc/sata
  79 
  80 #
  81 # For now, disable these lint checks; maintainers should endeavor
  82 # to investigate and remove these for maximum lint coverage.
  83 # Please do not carry these forward to new Makefiles.
  84 #
  85 
  86 #
  87 #       Default build targets.
  88 #
  89 .KEEP_STATE:
  90 
  91 def:            $(DEF_DEPS)
  92 
  93 all:            $(ALL_DEPS)


  53 #
  54 #       Define targets
  55 #
  56 ALL_TARGET      = $(BINARY)
  57 LINT_TARGET     = $(MODULE).lint
  58 INSTALL_TARGET  = $(BINARY) $(ROOTMODULE)
  59 
  60 #
  61 #       Overrides.
  62 #
  63 DEBUG_FLGS      =
  64 DEBUG_DEFS      += $(DEBUG_FLGS)
  65 
  66 #
  67 # lint pass one enforcement
  68 #
  69 CFLAGS += $(CCVERBOSE)
  70 
  71 CERRWARN        += -_gcc=-Wno-parentheses
  72 CERRWARN        += -_gcc=-Wno-unused-label
  73 CERRWARN        += $(CNOWARN_UNINIT)
  74 
  75 #
  76 #
  77 # we depend on the sata module
  78 LDFLAGS += -dy -N misc/sata
  79 
  80 #
  81 # For now, disable these lint checks; maintainers should endeavor
  82 # to investigate and remove these for maximum lint coverage.
  83 # Please do not carry these forward to new Makefiles.
  84 #
  85 
  86 #
  87 #       Default build targets.
  88 #
  89 .KEEP_STATE:
  90 
  91 def:            $(DEF_DEPS)
  92 
  93 all:            $(ALL_DEPS)