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


  69 
  70 
  71 #
  72 # Turn on doubleword alignment for 64 bit registers
  73 #
  74 CFLAGS += -dalign
  75 
  76 #Need to verify to add glvc driver required 
  77 LDFLAGS += -dy
  78 #LDFLAGS        += -dy  -Ndrv/rmclomv
  79 
  80 #
  81 # For now, disable these lint checks; maintainers should endeavor
  82 # to investigate and remove these for maximum lint coverage.
  83 # Please do not carry these forward to new Makefiles.
  84 #
  85 LINTTAGS        += -erroff=E_PTRDIFF_OVERFLOW
  86 LINTTAGS        += -erroff=E_ASSIGN_NARROW_CONV
  87 
  88 CERRWARN        += -_gcc=-Wno-parentheses
  89 CERRWARN        += -_gcc=-Wno-uninitialized
  90 
  91 #
  92 #       Default build targets.
  93 #
  94 .KEEP_STATE:
  95 
  96 def:            $(DEF_DEPS)
  97 
  98 all:            $(ALL_DEPS)
  99 
 100 clean:          $(CLEAN_DEPS)
 101 
 102 clobber:        $(CLOBBER_DEPS)
 103 
 104 lint:           $(LINT_DEPS)
 105 
 106 modlintlib:     $(MODLINTLIB_DEPS)
 107 
 108 clean.lint:     $(CLEAN_LINT_DEPS)
 109 


  69 
  70 
  71 #
  72 # Turn on doubleword alignment for 64 bit registers
  73 #
  74 CFLAGS += -dalign
  75 
  76 #Need to verify to add glvc driver required 
  77 LDFLAGS += -dy
  78 #LDFLAGS        += -dy  -Ndrv/rmclomv
  79 
  80 #
  81 # For now, disable these lint checks; maintainers should endeavor
  82 # to investigate and remove these for maximum lint coverage.
  83 # Please do not carry these forward to new Makefiles.
  84 #
  85 LINTTAGS        += -erroff=E_PTRDIFF_OVERFLOW
  86 LINTTAGS        += -erroff=E_ASSIGN_NARROW_CONV
  87 
  88 CERRWARN        += -_gcc=-Wno-parentheses
  89 CERRWARN        += $(CNOWARN_UNINIT)
  90 
  91 #
  92 #       Default build targets.
  93 #
  94 .KEEP_STATE:
  95 
  96 def:            $(DEF_DEPS)
  97 
  98 all:            $(ALL_DEPS)
  99 
 100 clean:          $(CLEAN_DEPS)
 101 
 102 clobber:        $(CLOBBER_DEPS)
 103 
 104 lint:           $(LINT_DEPS)
 105 
 106 modlintlib:     $(MODLINTLIB_DEPS)
 107 
 108 clean.lint:     $(CLEAN_LINT_DEPS)
 109