56 LINT_TARGET = $(MODULE).lint
57 INSTALL_TARGET = $(BINARY) $(ROOTMODULE)
58
59 #
60 # Override defaults to build a unique, local modstubs.o.
61 #
62 MODSTUBS_DIR = $(OBJS_DIR)
63 $(MODSTUBS_O) := AS_CPPFLAGS += -DKAIO_MODULE
64 CLEANFILES += $(MODSTUBS_O)
65
66 #
67 # For now, disable these lint checks; maintainers should endeavor
68 # to investigate and remove these for maximum lint coverage.
69 # Please do not carry these forward to new Makefiles.
70 #
71 LINTTAGS += -erroff=E_BAD_PTR_CAST_ALIGN
72 LINTTAGS += -erroff=E_ASSIGN_NARROW_CONV
73
74 CERRWARN += -_gcc=-Wno-parentheses
75 CERRWARN += -_gcc=-Wno-unused-label
76 CERRWARN += -_gcc=-Wno-uninitialized
77
78 #
79 # Default build targets.
80 #
81 .KEEP_STATE:
82
83 def: $(DEF_DEPS)
84
85 all: $(ALL_DEPS)
86
87 clean: $(CLEAN_DEPS)
88
89 clobber: $(CLOBBER_DEPS)
90
91 lint: $(LINT_DEPS)
92
93 modlintlib: $(MODLINTLIB_DEPS)
94
95 clean.lint: $(CLEAN_LINT_DEPS)
96
|
56 LINT_TARGET = $(MODULE).lint
57 INSTALL_TARGET = $(BINARY) $(ROOTMODULE)
58
59 #
60 # Override defaults to build a unique, local modstubs.o.
61 #
62 MODSTUBS_DIR = $(OBJS_DIR)
63 $(MODSTUBS_O) := AS_CPPFLAGS += -DKAIO_MODULE
64 CLEANFILES += $(MODSTUBS_O)
65
66 #
67 # For now, disable these lint checks; maintainers should endeavor
68 # to investigate and remove these for maximum lint coverage.
69 # Please do not carry these forward to new Makefiles.
70 #
71 LINTTAGS += -erroff=E_BAD_PTR_CAST_ALIGN
72 LINTTAGS += -erroff=E_ASSIGN_NARROW_CONV
73
74 CERRWARN += -_gcc=-Wno-parentheses
75 CERRWARN += -_gcc=-Wno-unused-label
76 CERRWARN += $(CNOWARN_UNINIT)
77
78 #
79 # Default build targets.
80 #
81 .KEEP_STATE:
82
83 def: $(DEF_DEPS)
84
85 all: $(ALL_DEPS)
86
87 clean: $(CLEAN_DEPS)
88
89 clobber: $(CLOBBER_DEPS)
90
91 lint: $(LINT_DEPS)
92
93 modlintlib: $(MODLINTLIB_DEPS)
94
95 clean.lint: $(CLEAN_LINT_DEPS)
96
|