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


  50 #
  51 include $(UTSBASE)/sparc/Makefile.sparc
  52 
  53 #
  54 # lint pass one enforcement
  55 #
  56 CFLAGS += $(CCVERBOSE)
  57 
  58 # depends on misc/usba misc/scsi
  59 #
  60 LDFLAGS         += -dy -Nmisc/usba -Nmisc/scsi
  61 
  62 #
  63 #       Define targets
  64 #
  65 ALL_TARGET      = $(BINARY) $(SRC_CONFILE)
  66 LINT_TARGET     = $(MODULE).lint
  67 INSTALL_TARGET  = $(BINARY) $(ROOTMODULE) $(ROOT_CONFFILE)
  68 
  69 CERRWARN        += -_gcc=-Wno-unused-label
  70 CERRWARN        += -_gcc=-Wno-uninitialized
  71 
  72 #
  73 # For now, disable these lint checks; maintainers should endeavor
  74 # to investigate and remove these for maximum lint coverage.
  75 # Please do not carry these forward to new Makefiles.
  76 #
  77 LINTTAGS        += -erroff=E_BAD_PTR_CAST_ALIGN
  78 
  79 .KEEP_STATE:
  80 
  81 all:            $(ALL_DEPS)
  82 
  83 def:            $(DEF_DEPS)
  84 
  85 clean:          $(CLEAN_DEPS)
  86 
  87 clobber:        $(CLOBBER_DEPS)
  88 
  89 lint:           $(LINT_DEPS)
  90 


  50 #
  51 include $(UTSBASE)/sparc/Makefile.sparc
  52 
  53 #
  54 # lint pass one enforcement
  55 #
  56 CFLAGS += $(CCVERBOSE)
  57 
  58 # depends on misc/usba misc/scsi
  59 #
  60 LDFLAGS         += -dy -Nmisc/usba -Nmisc/scsi
  61 
  62 #
  63 #       Define targets
  64 #
  65 ALL_TARGET      = $(BINARY) $(SRC_CONFILE)
  66 LINT_TARGET     = $(MODULE).lint
  67 INSTALL_TARGET  = $(BINARY) $(ROOTMODULE) $(ROOT_CONFFILE)
  68 
  69 CERRWARN        += -_gcc=-Wno-unused-label
  70 CERRWARN        += $(CNOWARN_UNINIT)
  71 
  72 #
  73 # For now, disable these lint checks; maintainers should endeavor
  74 # to investigate and remove these for maximum lint coverage.
  75 # Please do not carry these forward to new Makefiles.
  76 #
  77 LINTTAGS        += -erroff=E_BAD_PTR_CAST_ALIGN
  78 
  79 .KEEP_STATE:
  80 
  81 all:            $(ALL_DEPS)
  82 
  83 def:            $(DEF_DEPS)
  84 
  85 clean:          $(CLEAN_DEPS)
  86 
  87 clobber:        $(CLOBBER_DEPS)
  88 
  89 lint:           $(LINT_DEPS)
  90