77
78 #
79 # misc/fctl required because #ifdef MODSYM_LOAD code
80 # triggered by -DS11; uses DDI calls to load FCA symbols
81 #
82 LDFLAGS += -dy -Nmisc/md5 -Nmisc/sha1
83 LDFLAGS += -Nmisc/bignum -Nmisc/fctl
84
85 #
86 # For now, disable these lint checks; maintainers should endeavor
87 # to investigate and remove these for maximum lint coverage.
88 #
89 LINTTAGS += -erroff=E_BAD_PTR_CAST_ALIGN
90 LINTTAGS += -erroff=E_STATIC_UNUSED
91 LINTTAGS += -erroff=E_ASSIGN_NARROW_CONV
92 LINTTAGS += -erroff=E_SUSPICIOUS_COMPARISON
93 LINTTAGS += -erroff=E_INCONS_VAL_TYPE_DECL2
94
95 CERRWARN += -_gcc=-Wno-parentheses
96 CERRWARN += -_gcc=-Wno-unused-label
97 CERRWARN += -_gcc=-Wno-uninitialized
98
99 SMOFF += indenting,deref_check,all_func_returns
100
101 # seems definitely wrong
102 $(OBJS_DIR)/emlxs_fcf.o := SMOFF += logical_instead_of_bitwise
103
104 #
105 # Default build targets.
106 #
107 .KEEP_STATE:
108
109 def: $(DEF_DEPS)
110
111 all: $(ALL_DEPS)
112
113 clean: $(CLEAN_DEPS)
114
115 clobber: $(CLOBBER_DEPS)
116
117 lint: $(LINT_DEPS)
|
77
78 #
79 # misc/fctl required because #ifdef MODSYM_LOAD code
80 # triggered by -DS11; uses DDI calls to load FCA symbols
81 #
82 LDFLAGS += -dy -Nmisc/md5 -Nmisc/sha1
83 LDFLAGS += -Nmisc/bignum -Nmisc/fctl
84
85 #
86 # For now, disable these lint checks; maintainers should endeavor
87 # to investigate and remove these for maximum lint coverage.
88 #
89 LINTTAGS += -erroff=E_BAD_PTR_CAST_ALIGN
90 LINTTAGS += -erroff=E_STATIC_UNUSED
91 LINTTAGS += -erroff=E_ASSIGN_NARROW_CONV
92 LINTTAGS += -erroff=E_SUSPICIOUS_COMPARISON
93 LINTTAGS += -erroff=E_INCONS_VAL_TYPE_DECL2
94
95 CERRWARN += -_gcc=-Wno-parentheses
96 CERRWARN += -_gcc=-Wno-unused-label
97 CERRWARN += $(CNOWARN_UNINIT)
98
99 SMOFF += indenting,deref_check,all_func_returns
100
101 # seems definitely wrong
102 $(OBJS_DIR)/emlxs_fcf.o := SMOFF += logical_instead_of_bitwise
103
104 #
105 # Default build targets.
106 #
107 .KEEP_STATE:
108
109 def: $(DEF_DEPS)
110
111 all: $(ALL_DEPS)
112
113 clean: $(CLEAN_DEPS)
114
115 clobber: $(CLOBBER_DEPS)
116
117 lint: $(LINT_DEPS)
|