43 ROOTMODULE = $(ROOT_SOCK_DIR)/$(MODULE)
44
45 #
46 # Include common rules.
47 #
48 include $(UTSBASE)/sparc/Makefile.sparc
49
50 #
51 # Define targets
52 #
53 ALL_TARGET = $(BINARY)
54 LINT_TARGET = $(MODULE).lint
55 INSTALL_TARGET = $(BINARY) $(ROOTMODULE)
56
57 #
58 # lint pass one enforcement and OS version
59 #
60 CFLAGS += $(CCVERBOSE)
61
62 CERRWARN += -_gcc=-Wno-unused-label
63 CERRWARN += -_gcc=-Wno-uninitialized
64
65 LDFLAGS += -dy -Nfs/sockfs -Ndrv/ip -Ndrv/sdpib
66
67 #
68 # Default build targets.
69 #
70 .KEEP_STATE:
71
72 def: $(DEF_DEPS)
73
74 all: $(ALL_DEPS)
75
76 clean: $(CLEAN_DEPS)
77
78 clobber: $(CLOBBER_DEPS)
79
80 lint: $(LINT_DEPS)
81
82 modlintlib: $(MODLINTLIB_DEPS)
83
|
43 ROOTMODULE = $(ROOT_SOCK_DIR)/$(MODULE)
44
45 #
46 # Include common rules.
47 #
48 include $(UTSBASE)/sparc/Makefile.sparc
49
50 #
51 # Define targets
52 #
53 ALL_TARGET = $(BINARY)
54 LINT_TARGET = $(MODULE).lint
55 INSTALL_TARGET = $(BINARY) $(ROOTMODULE)
56
57 #
58 # lint pass one enforcement and OS version
59 #
60 CFLAGS += $(CCVERBOSE)
61
62 CERRWARN += -_gcc=-Wno-unused-label
63 CERRWARN += $(CNOWARN_UNINIT)
64
65 LDFLAGS += -dy -Nfs/sockfs -Ndrv/ip -Ndrv/sdpib
66
67 #
68 # Default build targets.
69 #
70 .KEEP_STATE:
71
72 def: $(DEF_DEPS)
73
74 all: $(ALL_DEPS)
75
76 clean: $(CLEAN_DEPS)
77
78 clobber: $(CLOBBER_DEPS)
79
80 lint: $(LINT_DEPS)
81
82 modlintlib: $(MODLINTLIB_DEPS)
83
|