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


  54 LINT_TARGET     = $(MODULE).lint
  55 INSTALL_TARGET  = $(BINARY) $(ROOTMODULE)
  56 
  57 #
  58 #       Overrides.
  59 #
  60 MODSTUBS_DIR     = $(OBJS_DIR)
  61 $(MODSTUBS_O)   := AS_CPPFLAGS += -DSEMSYS_MODULE
  62 CLEANFILES      += $(MODSTUBS_O)
  63 CFLAGS          += $(CCVERBOSE)
  64 LDFLAGS         += -dy -Nmisc/ipc
  65 
  66 #
  67 # For now, disable these lint checks; maintainers should endeavor
  68 # to investigate and remove these for maximum lint coverage.
  69 # Please do not carry these forward to new Makefiles.
  70 #
  71 LINTTAGS        += -erroff=E_SUPPRESSION_DIRECTIVE_UNUSED
  72 
  73 CERRWARN        += -_gcc=-Wno-parentheses
  74 CERRWARN        += -_gcc=-Wno-uninitialized
  75 
  76 #
  77 #       Default build targets.
  78 #
  79 .KEEP_STATE:
  80 
  81 def:            $(DEF_DEPS)
  82 
  83 all:            $(ALL_DEPS)
  84 
  85 clean:          $(CLEAN_DEPS)
  86 
  87 clobber:        $(CLOBBER_DEPS)
  88 
  89 lint:           $(LINT_DEPS)
  90 
  91 modlintlib:     $(MODLINTLIB_DEPS)
  92 
  93 clean.lint:     $(CLEAN_LINT_DEPS)
  94 


  54 LINT_TARGET     = $(MODULE).lint
  55 INSTALL_TARGET  = $(BINARY) $(ROOTMODULE)
  56 
  57 #
  58 #       Overrides.
  59 #
  60 MODSTUBS_DIR     = $(OBJS_DIR)
  61 $(MODSTUBS_O)   := AS_CPPFLAGS += -DSEMSYS_MODULE
  62 CLEANFILES      += $(MODSTUBS_O)
  63 CFLAGS          += $(CCVERBOSE)
  64 LDFLAGS         += -dy -Nmisc/ipc
  65 
  66 #
  67 # For now, disable these lint checks; maintainers should endeavor
  68 # to investigate and remove these for maximum lint coverage.
  69 # Please do not carry these forward to new Makefiles.
  70 #
  71 LINTTAGS        += -erroff=E_SUPPRESSION_DIRECTIVE_UNUSED
  72 
  73 CERRWARN        += -_gcc=-Wno-parentheses
  74 CERRWARN        += $(CNOWARN_UNINIT)
  75 
  76 #
  77 #       Default build targets.
  78 #
  79 .KEEP_STATE:
  80 
  81 def:            $(DEF_DEPS)
  82 
  83 all:            $(ALL_DEPS)
  84 
  85 clean:          $(CLEAN_DEPS)
  86 
  87 clobber:        $(CLOBBER_DEPS)
  88 
  89 lint:           $(LINT_DEPS)
  90 
  91 modlintlib:     $(MODLINTLIB_DEPS)
  92 
  93 clean.lint:     $(CLEAN_LINT_DEPS)
  94