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