47 #
48 # Include common rules.
49 #
50 include $(UTSBASE)/sparc/Makefile.sparc
51
52 #
53 # Define targets
54 #
55 ALL_TARGET = $(BINARY) $(SRC_CONFILE)
56 LINT_TARGET = $(MODULE).lint
57 INSTALL_TARGET = $(BINARY) $(ROOTMODULE) $(ROOT_CONFFILE)
58
59 #
60 # lint pass one enforcement
61 #
62 CFLAGS += $(CCVERBOSE)
63
64 # Turn this on once compiler understands v9 in it's backend
65 #INLINES += $(UTSBASE)/sun/io/ecpp.il
66
67 CERRWARN += -_gcc=-Wno-uninitialized
68 CERRWARN += -_gcc=-Wno-parentheses
69 CERRWARN += -_gcc=-Wno-unused-variable
70
71 #
72 # For now, disable these lint checks; maintainers should endeavor
73 # to investigate and remove these for maximum lint coverage.
74 # Please do not carry these forward to new Makefiles.
75 #
76 LINTTAGS += -erroff=E_BAD_PTR_CAST_ALIGN
77 LINTTAGS += -erroff=E_PTRDIFF_OVERFLOW
78 LINTTAGS += -erroff=E_ASSIGN_NARROW_CONV
79
80 # Default build targets.
81 #
82 .KEEP_STATE:
83
84 def: $(DEF_DEPS)
85
86 all: $(ALL_DEPS)
87
|
47 #
48 # Include common rules.
49 #
50 include $(UTSBASE)/sparc/Makefile.sparc
51
52 #
53 # Define targets
54 #
55 ALL_TARGET = $(BINARY) $(SRC_CONFILE)
56 LINT_TARGET = $(MODULE).lint
57 INSTALL_TARGET = $(BINARY) $(ROOTMODULE) $(ROOT_CONFFILE)
58
59 #
60 # lint pass one enforcement
61 #
62 CFLAGS += $(CCVERBOSE)
63
64 # Turn this on once compiler understands v9 in it's backend
65 #INLINES += $(UTSBASE)/sun/io/ecpp.il
66
67 CERRWARN += $(CNOWARN_UNINIT)
68 CERRWARN += -_gcc=-Wno-parentheses
69 CERRWARN += -_gcc=-Wno-unused-variable
70
71 #
72 # For now, disable these lint checks; maintainers should endeavor
73 # to investigate and remove these for maximum lint coverage.
74 # Please do not carry these forward to new Makefiles.
75 #
76 LINTTAGS += -erroff=E_BAD_PTR_CAST_ALIGN
77 LINTTAGS += -erroff=E_PTRDIFF_OVERFLOW
78 LINTTAGS += -erroff=E_ASSIGN_NARROW_CONV
79
80 # Default build targets.
81 #
82 .KEEP_STATE:
83
84 def: $(DEF_DEPS)
85
86 all: $(ALL_DEPS)
87
|