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 #
65 # For now, disable these lint checks; maintainers should endeavor
66 # to investigate and remove these for maximum lint coverage.
67 # Please do not carry these forward to new Makefiles.
68 #
69 LINTTAGS += -erroff=E_BAD_PTR_CAST_ALIGN
70 LINTTAGS += -erroff=E_ASSIGN_NARROW_CONV
71
72 CERRWARN += -_gcc=-Wno-parentheses
73 CERRWARN += -_gcc=-Wno-uninitialized
74 CERRWARN += -_gcc=-Wno-unused-value
75
76 #
77 # Default build targets.
78 #
79 .KEEP_STATE:
80
81 def: $(DEF_DEPS)
82
83 all: $(ALL_DEPS)
84
85 clean: $(CLEAN_DEPS)
86
87 clobber: $(CLOBBER_DEPS)
88
89 lint: $(LINT_DEPS)
90
91 modlintlib: $(MODLINTLIB_DEPS)
92
93 clean.lint: $(CLEAN_LINT_DEPS)
|
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 #
65 # For now, disable these lint checks; maintainers should endeavor
66 # to investigate and remove these for maximum lint coverage.
67 # Please do not carry these forward to new Makefiles.
68 #
69 LINTTAGS += -erroff=E_BAD_PTR_CAST_ALIGN
70 LINTTAGS += -erroff=E_ASSIGN_NARROW_CONV
71
72 CERRWARN += -_gcc=-Wno-parentheses
73 CERRWARN += $(CNOWARN_UNINIT)
74 CERRWARN += -_gcc=-Wno-unused-value
75
76 #
77 # Default build targets.
78 #
79 .KEEP_STATE:
80
81 def: $(DEF_DEPS)
82
83 all: $(ALL_DEPS)
84
85 clean: $(CLEAN_DEPS)
86
87 clobber: $(CLOBBER_DEPS)
88
89 lint: $(LINT_DEPS)
90
91 modlintlib: $(MODLINTLIB_DEPS)
92
93 clean.lint: $(CLEAN_LINT_DEPS)
|