44 ROOTMODULE = $(ROOT_DRV_DIR)/$(MODULE)
45 CONF_SRCDIR = $(UTSBASE)/common/io/ib/clients/rds
46
47 #
48 # Include common rules.
49 #
50 include $(UTSBASE)/sparc/Makefile.sparc
51
52 #
53 # Define targets
54 #
55 ALL_TARGET = $(BINARY) $(SRC_CONFILE)
56 LINT_TARGET = $(MODULE).lint
57 INSTALL_TARGET = $(BINARY) $(ROOTMODULE) $(ROOT_CONFFILE)
58
59 #
60 # lint pass one enforcement and OS version
61 #
62 CFLAGS += $(CCVERBOSE)
63
64 CERRWARN += -_gcc=-Wno-uninitialized
65
66 LDFLAGS += -dy -Nfs/sockfs -Ndrv/ip
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) lint64
84
|
44 ROOTMODULE = $(ROOT_DRV_DIR)/$(MODULE)
45 CONF_SRCDIR = $(UTSBASE)/common/io/ib/clients/rds
46
47 #
48 # Include common rules.
49 #
50 include $(UTSBASE)/sparc/Makefile.sparc
51
52 #
53 # Define targets
54 #
55 ALL_TARGET = $(BINARY) $(SRC_CONFILE)
56 LINT_TARGET = $(MODULE).lint
57 INSTALL_TARGET = $(BINARY) $(ROOTMODULE) $(ROOT_CONFFILE)
58
59 #
60 # lint pass one enforcement and OS version
61 #
62 CFLAGS += $(CCVERBOSE)
63
64 CERRWARN += $(CNOWARN_UNINIT)
65
66 LDFLAGS += -dy -Nfs/sockfs -Ndrv/ip
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) lint64
84
|