49 LINT_TARGET = $(MODULE).lint
50 INSTALL_TARGET = $(BINARY) $(ROOTMODULE)
51
52 #
53 # Overrides
54 #
55
56 #
57 # Driver depends on GLD & IP
58 #
59 LDFLAGS += -dy -N misc/mac -N drv/ip
60
61 #
62 # For now, disable these lint checks; maintainers should endeavor
63 # to investigate and remove these for maximum lint coverage.
64 # Please do not carry these forward to new Makefiles.
65 #
66 LINTTAGS += -erroff=E_BAD_PTR_CAST_ALIGN
67
68 CERRWARN += -_gcc=-Wno-switch
69 CERRWARN += -_gcc=-Wno-uninitialized
70
71 # looks like a real bug in rge_phy_update() !
72 $(OBJS_DIR)/rge_chip.o := SMOFF += indenting
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)
|
49 LINT_TARGET = $(MODULE).lint
50 INSTALL_TARGET = $(BINARY) $(ROOTMODULE)
51
52 #
53 # Overrides
54 #
55
56 #
57 # Driver depends on GLD & IP
58 #
59 LDFLAGS += -dy -N misc/mac -N drv/ip
60
61 #
62 # For now, disable these lint checks; maintainers should endeavor
63 # to investigate and remove these for maximum lint coverage.
64 # Please do not carry these forward to new Makefiles.
65 #
66 LINTTAGS += -erroff=E_BAD_PTR_CAST_ALIGN
67
68 CERRWARN += -_gcc=-Wno-switch
69 CERRWARN += $(CNOWARN_UNINIT)
70
71 # looks like a real bug in rge_phy_update() !
72 $(OBJS_DIR)/rge_chip.o := SMOFF += indenting
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)
|