61 #
62 CFLAGS += $(CCVERBOSE)
63
64 #
65 # Define dependencies on rpmod, rpcsec, and mntfs
66 #
67 LDFLAGS += -dy -N strmod/rpcmod -N misc/rpcsec -N fs/mntfs
68
69 #
70 # For now, disable these lint checks; maintainers should endeavor
71 # to investigate and remove these for maximum lint coverage.
72 # Please do not carry these forward to new Makefiles.
73 #
74 LINTTAGS += -erroff=E_BAD_PTR_CAST_ALIGN
75 LINTTAGS += -erroff=E_PTRDIFF_OVERFLOW
76 LINTTAGS += -erroff=E_STATIC_UNUSED
77
78 CERRWARN += -_gcc=-Wno-parentheses
79 CERRWARN += -_gcc=-Wno-unused-label
80 CERRWARN += -_gcc=-Wno-unused-function
81 CERRWARN += -_gcc=-Wno-uninitialized
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
98 modlintlib: $(MODLINTLIB_DEPS)
99
100 clean.lint: $(CLEAN_LINT_DEPS)
101
|
61 #
62 CFLAGS += $(CCVERBOSE)
63
64 #
65 # Define dependencies on rpmod, rpcsec, and mntfs
66 #
67 LDFLAGS += -dy -N strmod/rpcmod -N misc/rpcsec -N fs/mntfs
68
69 #
70 # For now, disable these lint checks; maintainers should endeavor
71 # to investigate and remove these for maximum lint coverage.
72 # Please do not carry these forward to new Makefiles.
73 #
74 LINTTAGS += -erroff=E_BAD_PTR_CAST_ALIGN
75 LINTTAGS += -erroff=E_PTRDIFF_OVERFLOW
76 LINTTAGS += -erroff=E_STATIC_UNUSED
77
78 CERRWARN += -_gcc=-Wno-parentheses
79 CERRWARN += -_gcc=-Wno-unused-label
80 CERRWARN += -_gcc=-Wno-unused-function
81 CERRWARN += $(CNOWARN_UNINIT)
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
98 modlintlib: $(MODLINTLIB_DEPS)
99
100 clean.lint: $(CLEAN_LINT_DEPS)
101
|