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