72 INC_PATH += -I$(UTSBASE)/common/sys/fibre-channel/fca
73 INC_PATH += -I$(UTSBASE)/common/sys/fibre-channel/fca/emlxs
74 INC_PATH += -I$(UTSBASE)/common/sys/fibre-channel/impl
75 INC_PATH += -I$(UTSBASE)/common/sys/fibre-channel/ulp
76
77 LDFLAGS += -dy -Nmisc/md5 -Nmisc/sha1
78 LDFLAGS += -Nmisc/bignum -Nmisc/fctl
79
80 #
81 # For now, disable these lint checks; maintainers should endeavor
82 # to investigate and remove these for maximum lint coverage.
83 #
84 LINTTAGS += -erroff=E_BAD_PTR_CAST_ALIGN
85 LINTTAGS += -erroff=E_STATIC_UNUSED
86 LINTTAGS += -erroff=E_ASSIGN_NARROW_CONV
87 LINTTAGS += -erroff=E_SUSPICIOUS_COMPARISON
88 LINTTAGS += -erroff=E_INCONS_VAL_TYPE_DECL2
89
90 CERRWARN += -_gcc=-Wno-parentheses
91 CERRWARN += -_gcc=-Wno-unused-label
92 CERRWARN += -_gcc=-Wno-uninitialized
93
94 #
95 # Default build targets.
96 #
97 .KEEP_STATE:
98
99 def: $(DEF_DEPS)
100
101 all: $(ALL_DEPS)
102
103 clean: $(CLEAN_DEPS)
104
105 clobber: $(CLOBBER_DEPS)
106
107 lint: $(LINT_DEPS)
108
109 modlintlib: $(MODLINTLIB_DEPS)
110
111 clean.lint: $(CLEAN_LINT_DEPS)
112
|
72 INC_PATH += -I$(UTSBASE)/common/sys/fibre-channel/fca
73 INC_PATH += -I$(UTSBASE)/common/sys/fibre-channel/fca/emlxs
74 INC_PATH += -I$(UTSBASE)/common/sys/fibre-channel/impl
75 INC_PATH += -I$(UTSBASE)/common/sys/fibre-channel/ulp
76
77 LDFLAGS += -dy -Nmisc/md5 -Nmisc/sha1
78 LDFLAGS += -Nmisc/bignum -Nmisc/fctl
79
80 #
81 # For now, disable these lint checks; maintainers should endeavor
82 # to investigate and remove these for maximum lint coverage.
83 #
84 LINTTAGS += -erroff=E_BAD_PTR_CAST_ALIGN
85 LINTTAGS += -erroff=E_STATIC_UNUSED
86 LINTTAGS += -erroff=E_ASSIGN_NARROW_CONV
87 LINTTAGS += -erroff=E_SUSPICIOUS_COMPARISON
88 LINTTAGS += -erroff=E_INCONS_VAL_TYPE_DECL2
89
90 CERRWARN += -_gcc=-Wno-parentheses
91 CERRWARN += -_gcc=-Wno-unused-label
92 CERRWARN += $(CNOWARN_UNINIT)
93
94 #
95 # Default build targets.
96 #
97 .KEEP_STATE:
98
99 def: $(DEF_DEPS)
100
101 all: $(ALL_DEPS)
102
103 clean: $(CLEAN_DEPS)
104
105 clobber: $(CLOBBER_DEPS)
106
107 lint: $(LINT_DEPS)
108
109 modlintlib: $(MODLINTLIB_DEPS)
110
111 clean.lint: $(CLEAN_LINT_DEPS)
112
|