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


  53 
  54 #
  55 #       Define targets
  56 #
  57 ALL_TARGET      = $(BINARY) $(CONFMOD)
  58 INSTALL_TARGET  = $(BINARY) $(ROOTMODULE) $(ROOT_CONFFILE)
  59 
  60 DEBUG_FLGS      =
  61 $(NOT_RELEASE_BUILD)DEBUG_DEFS  += $(DEBUG_FLGS)
  62 
  63 CPPFLAGS        += -DSUNDDI
  64 CERRWARN        += -_gcc=-Wno-unused-function
  65 
  66 LDFLAGS         += -dy -N misc/acpica
  67 
  68 #
  69 # For now, disable these checks; maintainers should endeavor
  70 # to investigate and remove these for maximum coverage.
  71 # Please do not carry these forward to new Makefiles.
  72 #
  73 CERRWARN        += -_gcc=-Wno-uninitialized
  74 
  75 #
  76 #       Default build targets.
  77 #
  78 .KEEP_STATE:
  79 
  80 def:            $(DEF_DEPS)
  81 
  82 all:            $(ALL_DEPS)
  83 
  84 clean:          $(CLEAN_DEPS)
  85 
  86 clobber:        $(CLOBBER_DEPS)
  87 
  88 install:        $(INSTALL_DEPS)
  89 
  90 #
  91 #       Include common targets.
  92 #
  93 include $(UTSBASE)/i86pc/Makefile.targ


  53 
  54 #
  55 #       Define targets
  56 #
  57 ALL_TARGET      = $(BINARY) $(CONFMOD)
  58 INSTALL_TARGET  = $(BINARY) $(ROOTMODULE) $(ROOT_CONFFILE)
  59 
  60 DEBUG_FLGS      =
  61 $(NOT_RELEASE_BUILD)DEBUG_DEFS  += $(DEBUG_FLGS)
  62 
  63 CPPFLAGS        += -DSUNDDI
  64 CERRWARN        += -_gcc=-Wno-unused-function
  65 
  66 LDFLAGS         += -dy -N misc/acpica
  67 
  68 #
  69 # For now, disable these checks; maintainers should endeavor
  70 # to investigate and remove these for maximum coverage.
  71 # Please do not carry these forward to new Makefiles.
  72 #
  73 CERRWARN        += $(CNOWARN_UNINIT)
  74 
  75 #
  76 #       Default build targets.
  77 #
  78 .KEEP_STATE:
  79 
  80 def:            $(DEF_DEPS)
  81 
  82 all:            $(ALL_DEPS)
  83 
  84 clean:          $(CLEAN_DEPS)
  85 
  86 clobber:        $(CLOBBER_DEPS)
  87 
  88 install:        $(INSTALL_DEPS)
  89 
  90 #
  91 #       Include common targets.
  92 #
  93 include $(UTSBASE)/i86pc/Makefile.targ