47 #
48 # Include common rules.
49 #
50 include $(UTSBASE)/sparc/Makefile.sparc
51
52 #
53 # Define targets
54 #
55 ALL_TARGET = $(BINARY)
56 LINT_TARGET = $(MODULE).lint
57 INSTALL_TARGET = $(BINARY) $(ROOTMODULE)
58
59 #
60 # Overrides.
61 #
62 CFLAGS += $(CCVERBOSE)
63
64 CERRWARN += -_gcc=-Wno-parentheses
65 CERRWARN += -_gcc=-Wno-type-limits
66 CERRWARN += -_gcc=-Wno-unused-label
67 CERRWARN += -_gcc=-Wno-uninitialized
68 CERRWARN += -_gcc=-Wno-unused-function
69
70 #
71 # For now, disable these lint checks; maintainers should endeavor
72 # to investigate and remove these for maximum lint coverage.
73 # Please do not carry these forward to new Makefiles.
74 #
75 LINTTAGS += -erroff=E_SUSPICIOUS_COMPARISON
76 LINTTAGS += -erroff=E_BAD_PTR_CAST_ALIGN
77 LINTTAGS += -erroff=E_SUPPRESSION_DIRECTIVE_UNUSED
78 LINTTAGS += -erroff=E_STATIC_UNUSED
79 LINTTAGS += -erroff=E_PTRDIFF_OVERFLOW
80 LINTTAGS += -erroff=E_ASSIGN_NARROW_CONV
81
82 #
83 # Default build targets.
84 #
85 .KEEP_STATE:
86
87 def: $(DEF_DEPS)
|
47 #
48 # Include common rules.
49 #
50 include $(UTSBASE)/sparc/Makefile.sparc
51
52 #
53 # Define targets
54 #
55 ALL_TARGET = $(BINARY)
56 LINT_TARGET = $(MODULE).lint
57 INSTALL_TARGET = $(BINARY) $(ROOTMODULE)
58
59 #
60 # Overrides.
61 #
62 CFLAGS += $(CCVERBOSE)
63
64 CERRWARN += -_gcc=-Wno-parentheses
65 CERRWARN += -_gcc=-Wno-type-limits
66 CERRWARN += -_gcc=-Wno-unused-label
67 CERRWARN += $(CNOWARN_UNINIT)
68 CERRWARN += -_gcc=-Wno-unused-function
69
70 #
71 # For now, disable these lint checks; maintainers should endeavor
72 # to investigate and remove these for maximum lint coverage.
73 # Please do not carry these forward to new Makefiles.
74 #
75 LINTTAGS += -erroff=E_SUSPICIOUS_COMPARISON
76 LINTTAGS += -erroff=E_BAD_PTR_CAST_ALIGN
77 LINTTAGS += -erroff=E_SUPPRESSION_DIRECTIVE_UNUSED
78 LINTTAGS += -erroff=E_STATIC_UNUSED
79 LINTTAGS += -erroff=E_PTRDIFF_OVERFLOW
80 LINTTAGS += -erroff=E_ASSIGN_NARROW_CONV
81
82 #
83 # Default build targets.
84 #
85 .KEEP_STATE:
86
87 def: $(DEF_DEPS)
|