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


  42 ROOTMODULE      = $(ROOT_SOCK_DIR)/$(MODULE)
  43 
  44 #
  45 #       Include common rules.
  46 #
  47 include $(UTSBASE)/intel/Makefile.intel
  48 
  49 #
  50 #       Define targets
  51 #
  52 ALL_TARGET      = $(BINARY)
  53 LINT_TARGET     = $(MODULE).lint
  54 INSTALL_TARGET  = $(BINARY) $(ROOTMODULE)
  55 
  56 #
  57 # lint pass one enforcement and OS version
  58 #
  59 CFLAGS += $(CCVERBOSE)
  60 
  61 CERRWARN        += -_gcc=-Wno-unused-label
  62 CERRWARN        += -_gcc=-Wno-uninitialized
  63 
  64 LDFLAGS += -dy -Nfs/sockfs -Ndrv/ip -Ndrv/sdpib
  65 
  66 #
  67 #       Default build targets.
  68 #
  69 .KEEP_STATE:
  70 
  71 def:            $(DEF_DEPS)
  72 
  73 all:            $(ALL_DEPS)
  74 
  75 clean:          $(CLEAN_DEPS)
  76 
  77 clobber:        $(CLOBBER_DEPS)
  78 
  79 lint:           $(LINT_DEPS)
  80 
  81 modlintlib:     $(MODLINTLIB_DEPS)
  82 


  42 ROOTMODULE      = $(ROOT_SOCK_DIR)/$(MODULE)
  43 
  44 #
  45 #       Include common rules.
  46 #
  47 include $(UTSBASE)/intel/Makefile.intel
  48 
  49 #
  50 #       Define targets
  51 #
  52 ALL_TARGET      = $(BINARY)
  53 LINT_TARGET     = $(MODULE).lint
  54 INSTALL_TARGET  = $(BINARY) $(ROOTMODULE)
  55 
  56 #
  57 # lint pass one enforcement and OS version
  58 #
  59 CFLAGS += $(CCVERBOSE)
  60 
  61 CERRWARN        += -_gcc=-Wno-unused-label
  62 CERRWARN        += $(CNOWARN_UNINIT)
  63 
  64 LDFLAGS += -dy -Nfs/sockfs -Ndrv/ip -Ndrv/sdpib
  65 
  66 #
  67 #       Default build targets.
  68 #
  69 .KEEP_STATE:
  70 
  71 def:            $(DEF_DEPS)
  72 
  73 all:            $(ALL_DEPS)
  74 
  75 clean:          $(CLEAN_DEPS)
  76 
  77 clobber:        $(CLOBBER_DEPS)
  78 
  79 lint:           $(LINT_DEPS)
  80 
  81 modlintlib:     $(MODLINTLIB_DEPS)
  82