66 # Include sun4 specific header files
67 #
68 INC_PATH += -I$(UTSBASE)/sun4
69
70 #
71 # lint pass one enforcement
72 #
73 CFLAGS += $(CCVERBOSE)
74
75 # dependency
76 LDFLAGS += -dy -Nmisc/busra
77
78 #
79 # For now, disable these lint checks; maintainers should endeavor
80 # to investigate and remove these for maximum lint coverage.
81 # Please do not carry these forward to new Makefiles.
82 #
83 LINTTAGS += -erroff=E_BAD_PTR_CAST_ALIGN
84 LINTTAGS += -erroff=E_ASSIGN_NARROW_CONV
85
86 CERRWARN += -_gcc=-Wno-uninitialized
87 CERRWARN += -_gcc=-Wno-parentheses
88
89 #
90 # Default build targets.
91 #
92 .KEEP_STATE:
93
94 def: $(DEF_DEPS)
95
96 all: $(ALL_DEPS)
97
98 clean: $(CLEAN_DEPS)
99
100 clobber: $(CLOBBER_DEPS)
101
102 lint: $(LINT_DEPS)
103
104 modlintlib: $(MODLINTLIB_DEPS)
105
106 clean.lint: $(CLEAN_LINT_DEPS)
|
66 # Include sun4 specific header files
67 #
68 INC_PATH += -I$(UTSBASE)/sun4
69
70 #
71 # lint pass one enforcement
72 #
73 CFLAGS += $(CCVERBOSE)
74
75 # dependency
76 LDFLAGS += -dy -Nmisc/busra
77
78 #
79 # For now, disable these lint checks; maintainers should endeavor
80 # to investigate and remove these for maximum lint coverage.
81 # Please do not carry these forward to new Makefiles.
82 #
83 LINTTAGS += -erroff=E_BAD_PTR_CAST_ALIGN
84 LINTTAGS += -erroff=E_ASSIGN_NARROW_CONV
85
86 CERRWARN += $(CNOWARN_UNINIT)
87 CERRWARN += -_gcc=-Wno-parentheses
88
89 #
90 # Default build targets.
91 #
92 .KEEP_STATE:
93
94 def: $(DEF_DEPS)
95
96 all: $(ALL_DEPS)
97
98 clean: $(CLEAN_DEPS)
99
100 clobber: $(CLOBBER_DEPS)
101
102 lint: $(LINT_DEPS)
103
104 modlintlib: $(MODLINTLIB_DEPS)
105
106 clean.lint: $(CLEAN_LINT_DEPS)
|