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