61 # Define targets
62 #
63 ALL_TARGET = $(BINARY)
64 LINT_TARGET = $(MODULE).lint
65 INSTALL_TARGET = $(BINARY) $(ROOTMODULE)
66
67 #
68 # lint pass one enforcement
69 #
70 CFLAGS += $(CCVERBOSE)
71
72 #
73 # For now, disable these lint checks; maintainers should endeavor
74 # to investigate and remove these for maximum lint coverage.
75 # Please do not carry these forward to new Makefiles.
76 #
77 LINTTAGS += -erroff=E_BAD_PTR_CAST_ALIGN
78 LINTTAGS += -erroff=E_ASSIGN_NARROW_CONV
79 LINTTAGS += -erroff=E_PTRDIFF_OVERFLOW
80
81 CERRWARN += -_gcc=-Wno-uninitialized
82 CERRWARN += -_gcc=-Wno-parentheses
83
84 #
85 # Default build targets.
86 #
87 .KEEP_STATE:
88
89 def: $(DEF_DEPS)
90
91 all: $(ALL_DEPS)
92
93 clean: $(CLEAN_DEPS)
94
95 clobber: $(CLOBBER_DEPS)
96
97 lint: $(LINT_DEPS)
98
99 modlintlib: $(MODLINTLIB_DEPS)
100
101 clean.lint: $(CLEAN_LINT_DEPS)
|
61 # Define targets
62 #
63 ALL_TARGET = $(BINARY)
64 LINT_TARGET = $(MODULE).lint
65 INSTALL_TARGET = $(BINARY) $(ROOTMODULE)
66
67 #
68 # lint pass one enforcement
69 #
70 CFLAGS += $(CCVERBOSE)
71
72 #
73 # For now, disable these lint checks; maintainers should endeavor
74 # to investigate and remove these for maximum lint coverage.
75 # Please do not carry these forward to new Makefiles.
76 #
77 LINTTAGS += -erroff=E_BAD_PTR_CAST_ALIGN
78 LINTTAGS += -erroff=E_ASSIGN_NARROW_CONV
79 LINTTAGS += -erroff=E_PTRDIFF_OVERFLOW
80
81 CERRWARN += $(CNOWARN_UNINIT)
82 CERRWARN += -_gcc=-Wno-parentheses
83
84 #
85 # Default build targets.
86 #
87 .KEEP_STATE:
88
89 def: $(DEF_DEPS)
90
91 all: $(ALL_DEPS)
92
93 clean: $(CLEAN_DEPS)
94
95 clobber: $(CLOBBER_DEPS)
96
97 lint: $(LINT_DEPS)
98
99 modlintlib: $(MODLINTLIB_DEPS)
100
101 clean.lint: $(CLEAN_LINT_DEPS)
|