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