45 #
46 # Define targets
47 #
48 ALL_TARGET = $(BINARY) $(SRC_CONFILE)
49 LINT_TARGET = $(MODULE).lint
50 INSTALL_TARGET = $(BINARY) $(ROOTMODULE) $(ROOT_CONFFILE)
51
52 #
53 # Overrides
54 #
55 CFLAGS += $(CCVERBOSE)
56 LDFLAGS += -dy -Ndrv/dld -Nmisc/mac -Nmisc/strplumb -Nmisc/dls
57
58 #
59 # For now, disable these lint checks as it is a generic STREAMS problem;
60 # maintainers should endeavor to investigate and remove these for maximum
61 # lint coverage.
62 #
63 LINTTAGS += -erroff=E_BAD_PTR_CAST_ALIGN
64
65 CERRWARN += -_gcc=-Wno-uninitialized
66 CERRWARN += -_gcc=-Wno-unused-label
67
68 #
69 # Default build targets.
70 #
71 .KEEP_STATE:
72
73 def: $(DEF_DEPS)
74
75 all: $(ALL_DEPS)
76
77 clean: $(CLEAN_DEPS)
78
79 clobber: $(CLOBBER_DEPS)
80
81 lint: $(LINT_DEPS)
82
83 modlintlib: $(MODLINTLIB_DEPS)
84
85 clean.lint: $(CLEAN_LINT_DEPS)
|
45 #
46 # Define targets
47 #
48 ALL_TARGET = $(BINARY) $(SRC_CONFILE)
49 LINT_TARGET = $(MODULE).lint
50 INSTALL_TARGET = $(BINARY) $(ROOTMODULE) $(ROOT_CONFFILE)
51
52 #
53 # Overrides
54 #
55 CFLAGS += $(CCVERBOSE)
56 LDFLAGS += -dy -Ndrv/dld -Nmisc/mac -Nmisc/strplumb -Nmisc/dls
57
58 #
59 # For now, disable these lint checks as it is a generic STREAMS problem;
60 # maintainers should endeavor to investigate and remove these for maximum
61 # lint coverage.
62 #
63 LINTTAGS += -erroff=E_BAD_PTR_CAST_ALIGN
64
65 CERRWARN += $(CNOWARN_UNINIT)
66 CERRWARN += -_gcc=-Wno-unused-label
67
68 #
69 # Default build targets.
70 #
71 .KEEP_STATE:
72
73 def: $(DEF_DEPS)
74
75 all: $(ALL_DEPS)
76
77 clean: $(CLEAN_DEPS)
78
79 clobber: $(CLOBBER_DEPS)
80
81 lint: $(LINT_DEPS)
82
83 modlintlib: $(MODLINTLIB_DEPS)
84
85 clean.lint: $(CLEAN_LINT_DEPS)
|