47 CONF_SRCDIR = $(UTSBASE)/common/io/sata/adapters/si3124
48
49 #
50 # Include common rules.
51 #
52 include $(UTSBASE)/intel/Makefile.intel
53
54 #
55 # Define targets
56 #
57 ALL_TARGET = $(BINARY)
58 LINT_TARGET = $(MODULE).lint
59 INSTALL_TARGET = $(BINARY) $(ROOTMODULE)
60
61 #
62 # Overrides.
63 #
64 DEBUG_FLGS =
65 DEBUG_DEFS += $(DEBUG_FLGS)
66
67 CERRWARN += -_gcc=-Wno-uninitialized
68
69 #
70 # lint pass one enforcement
71 #
72 CFLAGS += $(CCVERBOSE)
73
74 #
75 #
76 # we depend on the sata module
77 LDFLAGS += -dy -N misc/sata
78
79 #
80 # Default build targets.
81 #
82 .KEEP_STATE:
83
84 def: $(DEF_DEPS)
85
86 all: $(ALL_DEPS)
87
|
47 CONF_SRCDIR = $(UTSBASE)/common/io/sata/adapters/si3124
48
49 #
50 # Include common rules.
51 #
52 include $(UTSBASE)/intel/Makefile.intel
53
54 #
55 # Define targets
56 #
57 ALL_TARGET = $(BINARY)
58 LINT_TARGET = $(MODULE).lint
59 INSTALL_TARGET = $(BINARY) $(ROOTMODULE)
60
61 #
62 # Overrides.
63 #
64 DEBUG_FLGS =
65 DEBUG_DEFS += $(DEBUG_FLGS)
66
67 CERRWARN += $(CNOWARN_UNINIT)
68
69 #
70 # lint pass one enforcement
71 #
72 CFLAGS += $(CCVERBOSE)
73
74 #
75 #
76 # we depend on the sata module
77 LDFLAGS += -dy -N misc/sata
78
79 #
80 # Default build targets.
81 #
82 .KEEP_STATE:
83
84 def: $(DEF_DEPS)
85
86 all: $(ALL_DEPS)
87
|