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