113
114 $(ROOTSOFTLINKS): $(ROOTMODULE)
115 $(RM) $@; $(SYMLINK) $(MODULE) $@
116
117 # Include common targets.
118 #
119 include $(UTSBASE)/sun4u/Makefile.targ
120
121 #
122 # For now, disable these lint checks; maintainers should endeavor
123 # to investigate and remove these for maximum lint coverage.
124 # Please do not carry these forward to new Makefiles.
125 #
126 LINTTAGS += -erroff=E_SUSPICIOUS_COMPARISON
127 LINTTAGS += -erroff=E_BAD_PTR_CAST_ALIGN
128 LINTTAGS += -erroff=E_STATIC_UNUSED
129 LINTTAGS += -erroff=E_PTRDIFF_OVERFLOW
130 LINTTAGS += -erroff=E_ASSIGN_NARROW_CONV
131
132 CERRWARN += -_gcc=-Wno-parentheses
133 CERRWARN += -_gcc=-Wno-uninitialized
134 CERRWARN += -_gcc=-Wno-unused-variable
135 CERRWARN += -_gcc=-Wno-type-limits
136 CERRWARN += -_gcc=-Wno-clobbered
|
113
114 $(ROOTSOFTLINKS): $(ROOTMODULE)
115 $(RM) $@; $(SYMLINK) $(MODULE) $@
116
117 # Include common targets.
118 #
119 include $(UTSBASE)/sun4u/Makefile.targ
120
121 #
122 # For now, disable these lint checks; maintainers should endeavor
123 # to investigate and remove these for maximum lint coverage.
124 # Please do not carry these forward to new Makefiles.
125 #
126 LINTTAGS += -erroff=E_SUSPICIOUS_COMPARISON
127 LINTTAGS += -erroff=E_BAD_PTR_CAST_ALIGN
128 LINTTAGS += -erroff=E_STATIC_UNUSED
129 LINTTAGS += -erroff=E_PTRDIFF_OVERFLOW
130 LINTTAGS += -erroff=E_ASSIGN_NARROW_CONV
131
132 CERRWARN += -_gcc=-Wno-parentheses
133 CERRWARN += $(CNOWARN_UNINIT)
134 CERRWARN += -_gcc=-Wno-unused-variable
135 CERRWARN += -_gcc=-Wno-type-limits
136 CERRWARN += -_gcc=-Wno-clobbered
|