58 DEBUG_DEFS += $(DEBUG_FLGS)
59 CPPFLAGS += -DSGPIO_SUPPORT
60
61 #
62 # lint pass one enforcement
63 #
64 CFLAGS += $(CCVERBOSE)
65
66 #
67 # dependency on sata module
68 #
69 LDFLAGS += -dy -N misc/sata
70
71 #
72 # For now, disable these lint checks; maintainers should endeavor
73 # to investigate and remove these for maximum lint coverage.
74 # Please do not carry these forward to new Makefiles.
75 #
76 LINTTAGS += -erroff=E_BAD_PTR_CAST_ALIGN
77
78 CERRWARN += -_gcc=-Wno-uninitialized
79
80 # needs work
81 $(OBJS_DIR)/nv_sata.o := SMOFF += deref_check
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)
|
58 DEBUG_DEFS += $(DEBUG_FLGS)
59 CPPFLAGS += -DSGPIO_SUPPORT
60
61 #
62 # lint pass one enforcement
63 #
64 CFLAGS += $(CCVERBOSE)
65
66 #
67 # dependency on sata module
68 #
69 LDFLAGS += -dy -N misc/sata
70
71 #
72 # For now, disable these lint checks; maintainers should endeavor
73 # to investigate and remove these for maximum lint coverage.
74 # Please do not carry these forward to new Makefiles.
75 #
76 LINTTAGS += -erroff=E_BAD_PTR_CAST_ALIGN
77
78 CERRWARN += $(CNOWARN_UNINIT)
79
80 # needs work
81 $(OBJS_DIR)/nv_sata.o := SMOFF += deref_check
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)
|