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