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


  32 #
  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          = hook
  43 OBJECTS         = $(HOOK_OBJS:%=$(OBJS_DIR)/%)
  44 LINTS           = $(HOOK_OBJS:%.o=$(LINTS_DIR)/%.ln)
  45 ROOTMODULE      = $(ROOT_MISC_DIR)/$(MODULE)
  46 
  47 #
  48 #       Include common rules.
  49 #
  50 include $(UTSBASE)/sparc/Makefile.sparc
  51 
  52 CERRWARN        += -_gcc=-Wno-uninitialized
  53 
  54 #
  55 #       Define targets
  56 #
  57 ALL_TARGET      = $(BINARY)
  58 LINT_TARGET     = $(MODULE).lint
  59 INSTALL_TARGET  = $(BINARY) $(ROOTMODULE) $(ROOTLINK)
  60 
  61 #
  62 # lint pass one enforcement
  63 #
  64 CFLAGS          += $(CCVERBOSE)
  65 
  66 #
  67 #       Default build targets.
  68 #
  69 .KEEP_STATE:
  70 
  71 def:            $(DEF_DEPS)
  72 


  32 #
  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          = hook
  43 OBJECTS         = $(HOOK_OBJS:%=$(OBJS_DIR)/%)
  44 LINTS           = $(HOOK_OBJS:%.o=$(LINTS_DIR)/%.ln)
  45 ROOTMODULE      = $(ROOT_MISC_DIR)/$(MODULE)
  46 
  47 #
  48 #       Include common rules.
  49 #
  50 include $(UTSBASE)/sparc/Makefile.sparc
  51 
  52 CERRWARN        += $(CNOWARN_UNINIT)
  53 
  54 #
  55 #       Define targets
  56 #
  57 ALL_TARGET      = $(BINARY)
  58 LINT_TARGET     = $(MODULE).lint
  59 INSTALL_TARGET  = $(BINARY) $(ROOTMODULE) $(ROOTLINK)
  60 
  61 #
  62 # lint pass one enforcement
  63 #
  64 CFLAGS          += $(CCVERBOSE)
  65 
  66 #
  67 #       Default build targets.
  68 #
  69 .KEEP_STATE:
  70 
  71 def:            $(DEF_DEPS)
  72