57 # Define targets
58 #
59 ALL_TARGET = $(BINARY)
60 LINT_TARGET = $(MODULE).lint
61 INSTALL_TARGET = $(BINARY) $(ROOTMODULE)
62
63 #
64 # Overrides.
65 #
66 MODSTUBS_DIR = $(OBJS_DIR)
67 $(MODSTUBS_O) := AS_CPPFLAGS +=
68 CLEANFILES += $(MODSTUBS_O)
69
70 #
71 # For now, disable these lint checks; maintainers should endeavor
72 # to investigate and remove these for maximum lint coverage.
73 # Please do not carry these forward to new Makefiles.
74 #
75 LINTTAGS += -erroff=E_ASSIGN_NARROW_CONV
76
77 CERRWARN += -_gcc=-Wno-uninitialized
78 CERRWARN += -_gcc=-Wno-parentheses
79
80 # needs work
81 $(OBJS_DIR)/port_fop.o := SMOFF += deref_check
82
83 #
84 # Default build targets.
85 #
86 .KEEP_STATE:
87
88 def: $(DEF_DEPS)
89
90 all: $(ALL_DEPS)
91
92 clean: $(CLEAN_DEPS)
93
94 clobber: $(CLOBBER_DEPS)
95
96 lint: $(LINT_DEPS)
97
|
57 # Define targets
58 #
59 ALL_TARGET = $(BINARY)
60 LINT_TARGET = $(MODULE).lint
61 INSTALL_TARGET = $(BINARY) $(ROOTMODULE)
62
63 #
64 # Overrides.
65 #
66 MODSTUBS_DIR = $(OBJS_DIR)
67 $(MODSTUBS_O) := AS_CPPFLAGS +=
68 CLEANFILES += $(MODSTUBS_O)
69
70 #
71 # For now, disable these lint checks; maintainers should endeavor
72 # to investigate and remove these for maximum lint coverage.
73 # Please do not carry these forward to new Makefiles.
74 #
75 LINTTAGS += -erroff=E_ASSIGN_NARROW_CONV
76
77 CERRWARN += $(CNOWARN_UNINIT)
78 CERRWARN += -_gcc=-Wno-parentheses
79
80 # needs work
81 $(OBJS_DIR)/port_fop.o := SMOFF += deref_check
82
83 #
84 # Default build targets.
85 #
86 .KEEP_STATE:
87
88 def: $(DEF_DEPS)
89
90 all: $(ALL_DEPS)
91
92 clean: $(CLEAN_DEPS)
93
94 clobber: $(CLOBBER_DEPS)
95
96 lint: $(LINT_DEPS)
97
|