55 #
56 # Overrides and depends_on
57 #
58 MODSTUBS_DIR = $(OBJS_DIR)
59 LDFLAGS += -dy
60
61 INC_PATH += -I$(UTSBASE)/common/fs/zut
62 INC_PATH += -I$(SRC)/common
63 INC_PATH += -I$(COMMONBASE)/zut
64
65 C99LMODE= -Xc99=%all
66
67 #
68 # For now, disable these lint checks; maintainers should endeavor
69 # to investigate and remove these for maximum lint coverage.
70 # Please do not carry these forward to new Makefiles.
71 #
72 LINTTAGS += -erroff=E_PTRDIFF_OVERFLOW
73
74 CERRWARN += -_gcc=-Wno-parentheses
75 CERRWARN += -_gcc=-Wno-uninitialized
76
77 #
78 # Default build targets.
79 #
80 .KEEP_STATE:
81
82 def: $(DEF_DEPS)
83
84 all: $(ALL_DEPS)
85
86 clean: $(CLEAN_DEPS)
87
88 clobber: $(CLOBBER_DEPS)
89
90 lint: $(LINT_DEPS)
91
92 modlintlib: $(MODLINTLIB_DEPS)
93
94 clean.lint: $(CLEAN_LINT_DEPS)
95
|
55 #
56 # Overrides and depends_on
57 #
58 MODSTUBS_DIR = $(OBJS_DIR)
59 LDFLAGS += -dy
60
61 INC_PATH += -I$(UTSBASE)/common/fs/zut
62 INC_PATH += -I$(SRC)/common
63 INC_PATH += -I$(COMMONBASE)/zut
64
65 C99LMODE= -Xc99=%all
66
67 #
68 # For now, disable these lint checks; maintainers should endeavor
69 # to investigate and remove these for maximum lint coverage.
70 # Please do not carry these forward to new Makefiles.
71 #
72 LINTTAGS += -erroff=E_PTRDIFF_OVERFLOW
73
74 CERRWARN += -_gcc=-Wno-parentheses
75 CERRWARN += $(CNOWARN_UNINIT)
76
77 #
78 # Default build targets.
79 #
80 .KEEP_STATE:
81
82 def: $(DEF_DEPS)
83
84 all: $(ALL_DEPS)
85
86 clean: $(CLEAN_DEPS)
87
88 clobber: $(CLOBBER_DEPS)
89
90 lint: $(LINT_DEPS)
91
92 modlintlib: $(MODLINTLIB_DEPS)
93
94 clean.lint: $(CLEAN_LINT_DEPS)
95
|