54 #
55 # Define targets
56 #
57 ALL_TARGET = $(BINARY) $(SRC_CONFILE)
58 LINT_TARGET = $(MODULE).lint
59 INSTALL_TARGET = $(BINARY) $(ROOTMODULE) $(ROOT_CONFFILE)
60
61 #
62 # Overrides.
63 #
64
65 #
66 # For now, disable these lint checks; maintainers should endeavor
67 # to investigate and remove these for maximum lint coverage.
68 # Please do not carry these forward to new Makefiles.
69 #
70 LINTTAGS += -erroff=E_BAD_PTR_CAST_ALIGN
71 LINTTAGS += -erroff=E_ASSIGN_NARROW_CONV
72
73 CERRWARN += -_gcc=-Wno-parentheses
74 CERRWARN += -_gcc=-Wno-uninitialized
75 CERRWARN += -_gcc=-Wno-unused-label
76 CERRWARN += -_gcc=-Wno-unused-variable
77
78 #
79 # Default build targets.
80 #
81 .KEEP_STATE:
82
83 def: $(DEF_DEPS)
84
85 all: $(ALL_DEPS)
86
87 clean: $(CLEAN_DEPS)
88
89 clobber: $(CLOBBER_DEPS)
90
91 lint: $(LINT_DEPS)
92
93 modlintlib: $(MODLINTLIB_DEPS)
94
|
54 #
55 # Define targets
56 #
57 ALL_TARGET = $(BINARY) $(SRC_CONFILE)
58 LINT_TARGET = $(MODULE).lint
59 INSTALL_TARGET = $(BINARY) $(ROOTMODULE) $(ROOT_CONFFILE)
60
61 #
62 # Overrides.
63 #
64
65 #
66 # For now, disable these lint checks; maintainers should endeavor
67 # to investigate and remove these for maximum lint coverage.
68 # Please do not carry these forward to new Makefiles.
69 #
70 LINTTAGS += -erroff=E_BAD_PTR_CAST_ALIGN
71 LINTTAGS += -erroff=E_ASSIGN_NARROW_CONV
72
73 CERRWARN += -_gcc=-Wno-parentheses
74 CERRWARN += $(CNOWARN_UNINIT)
75 CERRWARN += -_gcc=-Wno-unused-label
76 CERRWARN += -_gcc=-Wno-unused-variable
77
78 #
79 # Default build targets.
80 #
81 .KEEP_STATE:
82
83 def: $(DEF_DEPS)
84
85 all: $(ALL_DEPS)
86
87 clean: $(CLEAN_DEPS)
88
89 clobber: $(CLOBBER_DEPS)
90
91 lint: $(LINT_DEPS)
92
93 modlintlib: $(MODLINTLIB_DEPS)
94
|