64 CLEANFILES += $(MODSTUBS_O)
65
66 #
67 # Include i86pc specific header files
68 #
69 INC_PATH += -I$(UTSBASE)/i86pc
70
71 #
72 # dependency
73 #
74 LDFLAGS += -dy -Nmisc/busra -Nmisc/pci_autoconfig
75
76 #
77 # For now, disable these lint checks; maintainers should endeavor
78 # to investigate and remove these for maximum lint coverage.
79 # Please do not carry these forward to new Makefiles.
80 #
81 LINTTAGS += -erroff=E_BAD_PTR_CAST_ALIGN
82 LINTTAGS += -erroff=E_ASSIGN_NARROW_CONV
83
84 CERRWARN += -_gcc=-Wno-uninitialized
85 CERRWARN += -_gcc=-Wno-parentheses
86
87 # needs work
88 SMATCH=off
89
90 #
91 # Default build targets.
92 #
93 .KEEP_STATE:
94
95 def: $(DEF_DEPS)
96
97 all: $(ALL_DEPS)
98
99 clean: $(CLEAN_DEPS)
100
101 clobber: $(CLOBBER_DEPS)
102
103 lint: $(LINT_DEPS)
104
|
64 CLEANFILES += $(MODSTUBS_O)
65
66 #
67 # Include i86pc specific header files
68 #
69 INC_PATH += -I$(UTSBASE)/i86pc
70
71 #
72 # dependency
73 #
74 LDFLAGS += -dy -Nmisc/busra -Nmisc/pci_autoconfig
75
76 #
77 # For now, disable these lint checks; maintainers should endeavor
78 # to investigate and remove these for maximum lint coverage.
79 # Please do not carry these forward to new Makefiles.
80 #
81 LINTTAGS += -erroff=E_BAD_PTR_CAST_ALIGN
82 LINTTAGS += -erroff=E_ASSIGN_NARROW_CONV
83
84 CERRWARN += $(CNOWARN_UNINIT)
85 CERRWARN += -_gcc=-Wno-parentheses
86
87 # needs work
88 SMATCH=off
89
90 #
91 # Default build targets.
92 #
93 .KEEP_STATE:
94
95 def: $(DEF_DEPS)
96
97 all: $(ALL_DEPS)
98
99 clean: $(CLEAN_DEPS)
100
101 clobber: $(CLOBBER_DEPS)
102
103 lint: $(LINT_DEPS)
104
|