47 #
48 include $(UTSBASE)/sparc/Makefile.sparc
49
50 #
51 # lint pass one enforcement
52 #
53 CFLAGS += $(CCVERBOSE)
54
55 #
56 # depends on usba, hidparser and audio related misc modules
57 #
58 LDFLAGS += -dy -Nmisc/usba -Nmisc/hidparser -Ndrv/usb_ac
59
60 #
61 # Define targets
62 #
63 ALL_TARGET = $(BINARY)
64 LINT_TARGET = $(MODULE).lint
65 INSTALL_TARGET = $(BINARY) $(ROOTMODULE)
66
67 CERRWARN += -_gcc=-Wno-uninitialized
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
76 .KEEP_STATE:
77
78 all: $(ALL_DEPS)
79
80 def: $(DEF_DEPS)
81
82 clean: $(CLEAN_DEPS)
83
84 clobber: $(CLOBBER_DEPS)
85
86 lint: $(LINT_DEPS)
87
|
47 #
48 include $(UTSBASE)/sparc/Makefile.sparc
49
50 #
51 # lint pass one enforcement
52 #
53 CFLAGS += $(CCVERBOSE)
54
55 #
56 # depends on usba, hidparser and audio related misc modules
57 #
58 LDFLAGS += -dy -Nmisc/usba -Nmisc/hidparser -Ndrv/usb_ac
59
60 #
61 # Define targets
62 #
63 ALL_TARGET = $(BINARY)
64 LINT_TARGET = $(MODULE).lint
65 INSTALL_TARGET = $(BINARY) $(ROOTMODULE)
66
67 CERRWARN += $(CNOWARN_UNINIT)
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
76 .KEEP_STATE:
77
78 all: $(ALL_DEPS)
79
80 def: $(DEF_DEPS)
81
82 clean: $(CLEAN_DEPS)
83
84 clobber: $(CLOBBER_DEPS)
85
86 lint: $(LINT_DEPS)
87
|