41 #
42 ARCHDIR = sparc
43 include ../Makefile.$(ARCHDIR)
44
45 #
46 # Define targets
47 #
48 ALL_TARGET = $(BINARY)
49 LINT_TARGET = $(MODULE).lint
50 INSTALL_TARGET = $(BINARY) $(ROOTMODULE)
51
52 #
53 # Overrides and depends_on
54 #
55 INC_PATH += -I$(UTSBASE)/common/sys/fibre-channel/fca/oce
56
57 LDFLAGS += -dy -Nmisc/mac
58
59 CERRWARN += -_gcc=-Wno-switch
60 CERRWARN += -_gcc=-Wno-unused-label
61 CERRWARN += -_gcc=-Wno-uninitialized
62 CERRWARN += -_gcc=-Wno-parentheses
63
64 #
65 # Default build targets.
66 #
67 .KEEP_STATE:
68
69 def: $(DEF_DEPS)
70
71 all: $(ALL_DEPS)
72
73 clean: $(CLEAN_DEPS)
74
75 clobber: $(CLOBBER_DEPS)
76
77 lint: $(LINT_DEPS)
78
79 modlintlib: $(MODLINTLIB_DEPS)
80
81 clean.lint: $(CLEAN_LINT_DEPS)
|
41 #
42 ARCHDIR = sparc
43 include ../Makefile.$(ARCHDIR)
44
45 #
46 # Define targets
47 #
48 ALL_TARGET = $(BINARY)
49 LINT_TARGET = $(MODULE).lint
50 INSTALL_TARGET = $(BINARY) $(ROOTMODULE)
51
52 #
53 # Overrides and depends_on
54 #
55 INC_PATH += -I$(UTSBASE)/common/sys/fibre-channel/fca/oce
56
57 LDFLAGS += -dy -Nmisc/mac
58
59 CERRWARN += -_gcc=-Wno-switch
60 CERRWARN += -_gcc=-Wno-unused-label
61 CERRWARN += $(CNOWARN_UNINIT)
62 CERRWARN += -_gcc=-Wno-parentheses
63
64 #
65 # Default build targets.
66 #
67 .KEEP_STATE:
68
69 def: $(DEF_DEPS)
70
71 all: $(ALL_DEPS)
72
73 clean: $(CLEAN_DEPS)
74
75 clobber: $(CLOBBER_DEPS)
76
77 lint: $(LINT_DEPS)
78
79 modlintlib: $(MODLINTLIB_DEPS)
80
81 clean.lint: $(CLEAN_LINT_DEPS)
|