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


  53 
  54 #
  55 # depends on misc/usba
  56 #
  57 LDFLAGS         += -dy -Nmisc/usba
  58 
  59 #
  60 #       Define targets
  61 #
  62 ALL_TARGET      = $(BINARY)
  63 LINT_TARGET     = $(MODULE).lint
  64 INSTALL_TARGET  = $(BINARY) $(ROOTMODULE)
  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 
  73 CERRWARN        += -_gcc=-Wno-uninitialized
  74 CERRWARN        += -_gcc=-Wno-parentheses
  75 CERRWARN        += -_gcc=-Wno-unused-label
  76 
  77 .KEEP_STATE:
  78 
  79 all:            $(ALL_DEPS)
  80 
  81 def:            $(DEF_DEPS)
  82 
  83 clean:          $(CLEAN_DEPS)
  84 
  85 clobber:        $(CLOBBER_DEPS)
  86 
  87 lint:           $(LINT_DEPS)
  88 
  89 modlintlib:     $(MODLINTLIB_DEPS)
  90 
  91 clean.lint:     $(CLEAN_LINT_DEPS)
  92 
  93 install:        $(INSTALL_DEPS)


  53 
  54 #
  55 # depends on misc/usba
  56 #
  57 LDFLAGS         += -dy -Nmisc/usba
  58 
  59 #
  60 #       Define targets
  61 #
  62 ALL_TARGET      = $(BINARY)
  63 LINT_TARGET     = $(MODULE).lint
  64 INSTALL_TARGET  = $(BINARY) $(ROOTMODULE)
  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 
  73 CERRWARN        += $(CNOWARN_UNINIT)
  74 CERRWARN        += -_gcc=-Wno-parentheses
  75 CERRWARN        += -_gcc=-Wno-unused-label
  76 
  77 .KEEP_STATE:
  78 
  79 all:            $(ALL_DEPS)
  80 
  81 def:            $(DEF_DEPS)
  82 
  83 clean:          $(CLEAN_DEPS)
  84 
  85 clobber:        $(CLOBBER_DEPS)
  86 
  87 lint:           $(LINT_DEPS)
  88 
  89 modlintlib:     $(MODLINTLIB_DEPS)
  90 
  91 clean.lint:     $(CLEAN_LINT_DEPS)
  92 
  93 install:        $(INSTALL_DEPS)