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