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


  33 
  34 #
  35 #       Path to the base of the uts directory tree (usually /usr/src/uts).
  36 #
  37 UTSBASE = ../..
  38 
  39 #
  40 #       Define the module and object file sets.
  41 #
  42 MODULE          = srn
  43 OBJECTS         = $(SRN_OBJS:%=$(OBJS_DIR)/%)
  44 LINTS           = $(SRN_OBJS:%.o=$(LINTS_DIR)/%.ln)
  45 ROOTMODULE      = $(ROOT_DRV_DIR)/$(MODULE)
  46 CONF_SRCDIR     = $(UTSBASE)/common/io
  47 
  48 #
  49 #       Include common rules.
  50 #
  51 include $(UTSBASE)/intel/Makefile.intel
  52 
  53 CERRWARN        += -_gcc=-Wno-uninitialized
  54 
  55 #
  56 #       Define targets
  57 #
  58 ALL_TARGET      = $(BINARY) $(SRC_CONFILE)
  59 LINT_TARGET     = $(MODULE).lint
  60 INSTALL_TARGET  = $(BINARY) $(ROOTMODULE) $(ROOT_CONFFILE)
  61 
  62 #
  63 #       Default build targets.
  64 #
  65 .KEEP_STATE:
  66 
  67 def:            $(DEF_DEPS)
  68 
  69 all:            $(ALL_DEPS)
  70 
  71 clean:          $(CLEAN_DEPS)
  72 
  73 clobber:        $(CLOBBER_DEPS)


  33 
  34 #
  35 #       Path to the base of the uts directory tree (usually /usr/src/uts).
  36 #
  37 UTSBASE = ../..
  38 
  39 #
  40 #       Define the module and object file sets.
  41 #
  42 MODULE          = srn
  43 OBJECTS         = $(SRN_OBJS:%=$(OBJS_DIR)/%)
  44 LINTS           = $(SRN_OBJS:%.o=$(LINTS_DIR)/%.ln)
  45 ROOTMODULE      = $(ROOT_DRV_DIR)/$(MODULE)
  46 CONF_SRCDIR     = $(UTSBASE)/common/io
  47 
  48 #
  49 #       Include common rules.
  50 #
  51 include $(UTSBASE)/intel/Makefile.intel
  52 
  53 CERRWARN        += $(CNOWARN_UNINIT)
  54 
  55 #
  56 #       Define targets
  57 #
  58 ALL_TARGET      = $(BINARY) $(SRC_CONFILE)
  59 LINT_TARGET     = $(MODULE).lint
  60 INSTALL_TARGET  = $(BINARY) $(ROOTMODULE) $(ROOT_CONFFILE)
  61 
  62 #
  63 #       Default build targets.
  64 #
  65 .KEEP_STATE:
  66 
  67 def:            $(DEF_DEPS)
  68 
  69 all:            $(ALL_DEPS)
  70 
  71 clean:          $(CLEAN_DEPS)
  72 
  73 clobber:        $(CLOBBER_DEPS)