58 #
59 # lint pass one enforcement
60 #
61 CFLAGS += $(CCVERBOSE)
62
63 #
64 # depends on misc/ibtl and misc/ibcm
65 #
66 LDFLAGS += -dy -Nmisc/ibtl -Nmisc/ibcm
67
68 #
69 # For now, disable these lint checks; maintainers should endeavor
70 # to investigate and remove these for maximum lint coverage.
71 # Please do not carry these forward to new Makefiles.
72 #
73 LINTTAGS += -erroff=E_BAD_PTR_CAST_ALIGN
74 LINTTAGS += -erroff=E_STATIC_UNUSED
75
76 CERRWARN += -_gcc=-Wno-unused-variable
77 CERRWARN += -_gcc=-Wno-unused-function
78 CERRWARN += -_gcc=-Wno-uninitialized
79
80 #
81 # Default build targets.
82 #
83 .KEEP_STATE:
84
85 def: $(DEF_DEPS)
86
87 all: $(ALL_DEPS)
88
89 clean: $(CLEAN_DEPS)
90
91 clobber: $(CLOBBER_DEPS)
92
93 lint: $(LINT_DEPS)
94
95 modlintlib: $(MODLINTLIB_DEPS)
96
97 clean.lint: $(CLEAN_LINT_DEPS)
98
|
58 #
59 # lint pass one enforcement
60 #
61 CFLAGS += $(CCVERBOSE)
62
63 #
64 # depends on misc/ibtl and misc/ibcm
65 #
66 LDFLAGS += -dy -Nmisc/ibtl -Nmisc/ibcm
67
68 #
69 # For now, disable these lint checks; maintainers should endeavor
70 # to investigate and remove these for maximum lint coverage.
71 # Please do not carry these forward to new Makefiles.
72 #
73 LINTTAGS += -erroff=E_BAD_PTR_CAST_ALIGN
74 LINTTAGS += -erroff=E_STATIC_UNUSED
75
76 CERRWARN += -_gcc=-Wno-unused-variable
77 CERRWARN += -_gcc=-Wno-unused-function
78 CERRWARN += $(CNOWARN_UNINIT)
79
80 #
81 # Default build targets.
82 #
83 .KEEP_STATE:
84
85 def: $(DEF_DEPS)
86
87 all: $(ALL_DEPS)
88
89 clean: $(CLEAN_DEPS)
90
91 clobber: $(CLOBBER_DEPS)
92
93 lint: $(LINT_DEPS)
94
95 modlintlib: $(MODLINTLIB_DEPS)
96
97 clean.lint: $(CLEAN_LINT_DEPS)
98
|