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