60 INC_PATH += -I$(UTSBASE)/common/brand/lx -I$(LX_CMN) -I$(SRC)/common
61 INC_PATH += -I$(UTSBASE)/common/inet/sockmods -I$(UTSBASE)/common/io/bpf
62 INC_PATH += -I$(UTSBASE)/common/fs/sockfs
63 INC_PATH += -I$(UTSBASE)/common/fs/zfs
64 AS_INC_PATH += -I$(UTSBASE)/i86pc/genassym/$(OBJS_DIR)
65
66 #
67 # lint pass one enforcement
68 #
69 CFLAGS += $(CCVERBOSE)
70
71 LDFLAGS += -dy -Nexec/elfexec -Nfs/fifofs -Nfs/sockfs -Ndrv/ip -Nfs/zfs
72
73 #
74 # For now, disable these lint checks; maintainers should endeavor
75 # to investigate and remove these for maximum lint coverage.
76 # Please do not carry these forward to new Makefiles.
77 #
78 LINTTAGS += -erroff=E_ASSIGN_NARROW_CONV
79 LINTTAGS += -erroff=E_SUSPICIOUS_COMPARISON
80
81 #
82 # Default build targets.
83 #
84 .KEEP_STATE:
85
86 def: $(DEF_DEPS)
87
88 all: $(ALL_DEPS)
89
90 clean: $(CLEAN_DEPS)
91
92 clobber: $(CLOBBER_DEPS)
93
94 lint: $(LINT_DEPS)
95
96 modlintlib: $(MODLINTLIB_DEPS)
97
98 clean.lint: $(CLEAN_LINT_DEPS)
99
|
60 INC_PATH += -I$(UTSBASE)/common/brand/lx -I$(LX_CMN) -I$(SRC)/common
61 INC_PATH += -I$(UTSBASE)/common/inet/sockmods -I$(UTSBASE)/common/io/bpf
62 INC_PATH += -I$(UTSBASE)/common/fs/sockfs
63 INC_PATH += -I$(UTSBASE)/common/fs/zfs
64 AS_INC_PATH += -I$(UTSBASE)/i86pc/genassym/$(OBJS_DIR)
65
66 #
67 # lint pass one enforcement
68 #
69 CFLAGS += $(CCVERBOSE)
70
71 LDFLAGS += -dy -Nexec/elfexec -Nfs/fifofs -Nfs/sockfs -Ndrv/ip -Nfs/zfs
72
73 #
74 # For now, disable these lint checks; maintainers should endeavor
75 # to investigate and remove these for maximum lint coverage.
76 # Please do not carry these forward to new Makefiles.
77 #
78 LINTTAGS += -erroff=E_ASSIGN_NARROW_CONV
79 LINTTAGS += -erroff=E_SUSPICIOUS_COMPARISON
80 LINTTAGS += -erroff=E_TRUE_LOGICAL_EXPR
81
82 #
83 # Default build targets.
84 #
85 .KEEP_STATE:
86
87 def: $(DEF_DEPS)
88
89 all: $(ALL_DEPS)
90
91 clean: $(CLEAN_DEPS)
92
93 clobber: $(CLOBBER_DEPS)
94
95 lint: $(LINT_DEPS)
96
97 modlintlib: $(MODLINTLIB_DEPS)
98
99 clean.lint: $(CLEAN_LINT_DEPS)
100
|