42 #
43 include $(UTSBASE)/sparc/Makefile.sparc
44
45 #
46 # Define targets
47 #
48 ALL_TARGET = $(BINARY)
49 LINT_TARGET = $(MODULE).lint
50 INSTALL_TARGET = $(BINARY) $(ROOTMODULE)
51
52 #
53 # For now, disable these lint checks; maintainers should endeavor
54 # to investigate and remove these for maximum lint coverage.
55 # Please do not carry these forward to new Makefiles.
56 #
57 LINTTAGS += -erroff=E_BAD_PTR_CAST_ALIGN
58 LINTTAGS += -erroff=E_PTRDIFF_OVERFLOW
59 LINTTAGS += -erroff=E_STATIC_UNUSED
60 LINTTAGS += -erroff=E_CONST_TRUNCATED_BY_ASSIGN
61
62 CERRWARN += -_gcc=-Wno-uninitialized
63 CERRWARN += -_gcc=-Wno-parentheses
64 CERRWARN += -_gcc=-Wno-type-limits
65 CERRWARN += -_gcc=-Wno-unused-variable
66
67 #
68 # Default build targets.
69 #
70 .KEEP_STATE:
71
72 def: $(DEF_DEPS)
73
74 all: $(ALL_DEPS)
75
76 clean: $(CLEAN_DEPS)
77
78 clobber: $(CLOBBER_DEPS)
79
80 lint: $(LINT_DEPS)
81
82 modlintlib: $(MODLINTLIB_DEPS)
|
42 #
43 include $(UTSBASE)/sparc/Makefile.sparc
44
45 #
46 # Define targets
47 #
48 ALL_TARGET = $(BINARY)
49 LINT_TARGET = $(MODULE).lint
50 INSTALL_TARGET = $(BINARY) $(ROOTMODULE)
51
52 #
53 # For now, disable these lint checks; maintainers should endeavor
54 # to investigate and remove these for maximum lint coverage.
55 # Please do not carry these forward to new Makefiles.
56 #
57 LINTTAGS += -erroff=E_BAD_PTR_CAST_ALIGN
58 LINTTAGS += -erroff=E_PTRDIFF_OVERFLOW
59 LINTTAGS += -erroff=E_STATIC_UNUSED
60 LINTTAGS += -erroff=E_CONST_TRUNCATED_BY_ASSIGN
61
62 CERRWARN += $(CNOWARN_UNINIT)
63 CERRWARN += -_gcc=-Wno-parentheses
64 CERRWARN += -_gcc=-Wno-type-limits
65 CERRWARN += -_gcc=-Wno-unused-variable
66
67 #
68 # Default build targets.
69 #
70 .KEEP_STATE:
71
72 def: $(DEF_DEPS)
73
74 all: $(ALL_DEPS)
75
76 clean: $(CLEAN_DEPS)
77
78 clobber: $(CLOBBER_DEPS)
79
80 lint: $(LINT_DEPS)
81
82 modlintlib: $(MODLINTLIB_DEPS)
|