63
64 #
65 # Overrides
66 #
67 DEF_BUILDS = $(DEF_BUILDS64)
68 ALL_BUILDS = $(ALL_BUILDS64)
69 CLEANLINTFILES += $(LINT64_FILES)
70
71 #
72 # lint pass one enforcement
73 #
74 CFLAGS += $(CCVERBOSE)
75 CPPFLAGS += -DCARDBUS -DHOTPLUG
76
77 # dependency
78 LDFLAGS += -dy -Nmisc/busra -Nmisc/pcmcia -Nmisc/cardbus
79
80 CERRWARN += -_gcc=-Wno-parentheses
81 CERRWARN += -_gcc=-Wno-unused-variable
82 CERRWARN += -_gcc=-Wno-unused-function
83 CERRWARN += -_gcc=-Wno-uninitialized
84
85 #
86 # For now, disable these lint checks; maintainers should endeavor
87 # to investigate and remove these for maximum lint coverage.
88 # Please do not carry these forward to new Makefiles.
89 #
90 LINTTAGS += -erroff=E_BAD_PTR_CAST_ALIGN
91 LINTTAGS += -erroff=E_ASSIGN_NARROW_CONV
92 LINTTAGS += -erroff=E_STATIC_UNUSED
93 LINTTAGS += -erroff=E_SUSPICIOUS_COMPARISON
94
95 #
96 # Default build targets.
97 #
98 .KEEP_STATE:
99
100 def: $(DEF_DEPS)
101
102 all: $(ALL_DEPS)
103
|
63
64 #
65 # Overrides
66 #
67 DEF_BUILDS = $(DEF_BUILDS64)
68 ALL_BUILDS = $(ALL_BUILDS64)
69 CLEANLINTFILES += $(LINT64_FILES)
70
71 #
72 # lint pass one enforcement
73 #
74 CFLAGS += $(CCVERBOSE)
75 CPPFLAGS += -DCARDBUS -DHOTPLUG
76
77 # dependency
78 LDFLAGS += -dy -Nmisc/busra -Nmisc/pcmcia -Nmisc/cardbus
79
80 CERRWARN += -_gcc=-Wno-parentheses
81 CERRWARN += -_gcc=-Wno-unused-variable
82 CERRWARN += -_gcc=-Wno-unused-function
83 CERRWARN += $(CNOWARN_UNINIT)
84
85 #
86 # For now, disable these lint checks; maintainers should endeavor
87 # to investigate and remove these for maximum lint coverage.
88 # Please do not carry these forward to new Makefiles.
89 #
90 LINTTAGS += -erroff=E_BAD_PTR_CAST_ALIGN
91 LINTTAGS += -erroff=E_ASSIGN_NARROW_CONV
92 LINTTAGS += -erroff=E_STATIC_UNUSED
93 LINTTAGS += -erroff=E_SUSPICIOUS_COMPARISON
94
95 #
96 # Default build targets.
97 #
98 .KEEP_STATE:
99
100 def: $(DEF_DEPS)
101
102 all: $(ALL_DEPS)
103
|