62 #
63 # depends on rsmops
64 #
65 LDFLAGS += -dy -Nmisc/rsmops
66
67 #
68 # Flag to enable for DR testing via drtest driver
69 #
70 #CFLAGS += -DRSM_DRTEST
71 #LDFLAGS += -Ndrv/rsm_drtest
72
73 #
74 # For now, disable these lint checks; maintainers should endeavor
75 # to investigate and remove these for maximum lint coverage.
76 # Please do not carry these forward to new Makefiles.
77 #
78 LINTTAGS += -erroff=E_BAD_PTR_CAST_ALIGN
79 LINTTAGS += -erroff=E_PTRDIFF_OVERFLOW
80 LINTTAGS += -erroff=E_ASSIGN_NARROW_CONV
81
82 CERRWARN += -_gcc=-Wno-uninitialized
83 CERRWARN += -_gcc=-Wno-parentheses
84
85 # needs work
86 SMATCH=off
87
88 #
89 # Default build targets.
90 #
91 .KEEP_STATE:
92
93 def: $(DEF_DEPS)
94
95 all: $(ALL_DEPS)
96
97 clean: $(CLEAN_DEPS)
98
99 clobber: $(CLOBBER_DEPS)
100
101 lint: $(LINT_DEPS)
102
|
62 #
63 # depends on rsmops
64 #
65 LDFLAGS += -dy -Nmisc/rsmops
66
67 #
68 # Flag to enable for DR testing via drtest driver
69 #
70 #CFLAGS += -DRSM_DRTEST
71 #LDFLAGS += -Ndrv/rsm_drtest
72
73 #
74 # For now, disable these lint checks; maintainers should endeavor
75 # to investigate and remove these for maximum lint coverage.
76 # Please do not carry these forward to new Makefiles.
77 #
78 LINTTAGS += -erroff=E_BAD_PTR_CAST_ALIGN
79 LINTTAGS += -erroff=E_PTRDIFF_OVERFLOW
80 LINTTAGS += -erroff=E_ASSIGN_NARROW_CONV
81
82 CERRWARN += $(CNOWARN_UNINIT)
83 CERRWARN += -_gcc=-Wno-parentheses
84
85 # needs work
86 SMATCH=off
87
88 #
89 # Default build targets.
90 #
91 .KEEP_STATE:
92
93 def: $(DEF_DEPS)
94
95 all: $(ALL_DEPS)
96
97 clean: $(CLEAN_DEPS)
98
99 clobber: $(CLOBBER_DEPS)
100
101 lint: $(LINT_DEPS)
102
|