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


  64 # Module specific debug flag
  65 #
  66 CPPFLAGS += -DENX_DEBUG
  67 
  68 #
  69 # Lint pass one enforcement
  70 #
  71 CFLAGS += $(CCVERBOSE)
  72 
  73 #
  74 # Depends on misc/ibtl
  75 #
  76 LDFLAGS += -dy -Nmisc/ibcm -Nmisc/ibtl
  77 
  78 #
  79 # The only lint flag we should need
  80 #
  81 LINTTAGS += -erroff=E_BAD_PTR_CAST_ALIGN
  82 
  83 CERRWARN += -_gcc=-Wno-parentheses
  84 CERRWARN += -_gcc=-Wno-uninitialized
  85 
  86 #
  87 # Default build targets
  88 #
  89 .KEEP_STATE:
  90 
  91 def:            $(DEF_DEPS)
  92 
  93 all:            $(ALL_DEPS)
  94 
  95 clean:          $(CLEAN_DEPS)
  96 
  97 clobber:        $(CLOBBER_DEPS)
  98 
  99 lint:           $(LINT_DEPS)
 100 
 101 modlintlib:     $(MODLINTLIB_DEPS) lint32
 102 
 103 clean.lint:     $(CLEAN_LINT_DEPS)
 104 


  64 # Module specific debug flag
  65 #
  66 CPPFLAGS += -DENX_DEBUG
  67 
  68 #
  69 # Lint pass one enforcement
  70 #
  71 CFLAGS += $(CCVERBOSE)
  72 
  73 #
  74 # Depends on misc/ibtl
  75 #
  76 LDFLAGS += -dy -Nmisc/ibcm -Nmisc/ibtl
  77 
  78 #
  79 # The only lint flag we should need
  80 #
  81 LINTTAGS += -erroff=E_BAD_PTR_CAST_ALIGN
  82 
  83 CERRWARN += -_gcc=-Wno-parentheses
  84 CERRWARN += $(CNOWARN_UNINIT)
  85 
  86 #
  87 # Default build targets
  88 #
  89 .KEEP_STATE:
  90 
  91 def:            $(DEF_DEPS)
  92 
  93 all:            $(ALL_DEPS)
  94 
  95 clean:          $(CLEAN_DEPS)
  96 
  97 clobber:        $(CLOBBER_DEPS)
  98 
  99 lint:           $(LINT_DEPS)
 100 
 101 modlintlib:     $(MODLINTLIB_DEPS) lint32
 102 
 103 clean.lint:     $(CLEAN_LINT_DEPS)
 104