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


  48 # This signals that $(KMODSRCS) != $(MODSRCS).  There are certain features of
  49 # the libumem dmod, such as leak detection, that we cannot yet use in the kmod.
  50 # In most cases, the inability to use a given function is due to that function's
  51 # dependance on libproc interfaces - interfaces which are not present in kmdb.
  52 KMOD_SOURCES_DIFFERENT=$(POUND_SIGN)
  53 
  54 include ../../../../Makefile.cmd
  55 
  56 CPPFLAGS += -I$(SRC)/lib/libumem/common
  57 CPPFLAGS += -I$(SRC)/lib/libc/inc
  58 CPPFLAGS += -I$(MODSRCS_DIR)
  59 
  60 include ../../../../Makefile.cmd.64
  61 include ../../Makefile.sparcv9
  62 include ../../../Makefile.module
  63 
  64 dmod/$(MODULE) := LDLIBS += -lproc -lm
  65 
  66 CERRWARN += -_gcc=-Wno-unused-label
  67 CERRWARN += -_gcc=-Wno-parentheses
  68 CERRWARN += -_gcc=-Wno-uninitialized
  69 
  70 %.o: $(MODSRCS_DIR)/%.c
  71         $(COMPILE.c) $<
  72         $(CTFCONVERT_O)
  73 
  74 %.ln: $(MODSRCS_DIR)/%.c
  75         $(LINT.c) -c $<
  76 
  77 #
  78 # This module is somewhat unusual in that it is a proc-style dmod.  proc dmods
  79 # are not normally built both for mdb and kmdb.  These overrides build it as a
  80 # proc dmod and as a kvm kmod.
  81 TARGETS = $(TARGETS_proc) $(TARGETS_kvm_kmdb)
  82 ROOTTGTS = $(ROOTTGTS_proc)


  48 # This signals that $(KMODSRCS) != $(MODSRCS).  There are certain features of
  49 # the libumem dmod, such as leak detection, that we cannot yet use in the kmod.
  50 # In most cases, the inability to use a given function is due to that function's
  51 # dependance on libproc interfaces - interfaces which are not present in kmdb.
  52 KMOD_SOURCES_DIFFERENT=$(POUND_SIGN)
  53 
  54 include ../../../../Makefile.cmd
  55 
  56 CPPFLAGS += -I$(SRC)/lib/libumem/common
  57 CPPFLAGS += -I$(SRC)/lib/libc/inc
  58 CPPFLAGS += -I$(MODSRCS_DIR)
  59 
  60 include ../../../../Makefile.cmd.64
  61 include ../../Makefile.sparcv9
  62 include ../../../Makefile.module
  63 
  64 dmod/$(MODULE) := LDLIBS += -lproc -lm
  65 
  66 CERRWARN += -_gcc=-Wno-unused-label
  67 CERRWARN += -_gcc=-Wno-parentheses
  68 CERRWARN += $(CNOWARN_UNINIT)
  69 
  70 %.o: $(MODSRCS_DIR)/%.c
  71         $(COMPILE.c) $<
  72         $(CTFCONVERT_O)
  73 
  74 %.ln: $(MODSRCS_DIR)/%.c
  75         $(LINT.c) -c $<
  76 
  77 #
  78 # This module is somewhat unusual in that it is a proc-style dmod.  proc dmods
  79 # are not normally built both for mdb and kmdb.  These overrides build it as a
  80 # proc dmod and as a kvm kmod.
  81 TARGETS = $(TARGETS_proc) $(TARGETS_kvm_kmdb)
  82 ROOTTGTS = $(ROOTTGTS_proc)