xref: /illumos-gate/usr/src/uts/intel/sdhost/Makefile (revision 581cede61ac9c14d8d4ea452562a567189eead78)
1#
2# CDDL HEADER START
3#
4# The contents of this file are subject to the terms of the
5# Common Development and Distribution License (the "License").
6# You may not use this file except in compliance with the License.
7#
8# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9# or http://www.opensolaris.org/os/licensing.
10# See the License for the specific language governing permissions
11# and limitations under the License.
12#
13# When distributing Covered Code, include this CDDL HEADER in each
14# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15# If applicable, add the following below this CDDL HEADER, with the
16# fields enclosed by brackets "[]" replaced with your own identifying
17# information: Portions Copyright [yyyy] [name of copyright owner]
18#
19# CDDL HEADER END
20#
21
22#
23# Copyright 2008 Sun Microsystems, Inc.  All rights reserved.
24# Use is subject to license terms.
25#
26
27#
28# uts/intel/sdhost/Makefile
29#
30#	This makefile drives the production of the sdhost driver
31#	kernel module.
32#
33#	intel architecture dependent
34#
35
36#
37#	Path to the base of the uts directory tree (usually /usr/src/uts).
38#
39UTSBASE	= ../..
40
41#
42#	Define the module and object file sets.
43#
44MODULE		= sdhost
45OBJECTS		= $(SDHOST_OBJS:%=$(OBJS_DIR)/%)
46LINTS		= $(SDHOST_OBJS:%.o=$(LINTS_DIR)/%.ln)
47ROOTMODULE	= $(ROOT_DRV_DIR)/$(MODULE)
48WARLOCK_OUT	= $(SDHOST_OBJS:%.o=%.ll)
49WARLOCK_OK	= $(MODULE).ok
50WLCMD_DIR	= $(UTSBASE)/common/io/warlock
51
52#
53#	Include common rules.
54#
55include $(UTSBASE)/intel/Makefile.intel
56
57#
58#	Define targets
59#
60ALL_TARGET	= $(BINARY)
61LINT_TARGET	= $(MODULE).lint
62INSTALL_TARGET	= $(BINARY) $(ROOTMODULE)
63
64#
65#	Overrides.
66#
67DEBUG_FLGS	=
68DEBUG_DEFS	+= $(DEBUG_FLGS)
69
70#
71# lint pass one enforcement
72#
73CFLAGS += $(CCVERBOSE)
74
75#
76# dependency on scsi module
77#
78LDFLAGS += -dy -Nmisc/sda
79
80#
81#	Default build targets.
82#
83.KEEP_STATE:
84
85def:		$(DEF_DEPS)
86
87all:		$(ALL_DEPS)
88
89clean:		$(CLEAN_DEPS)
90
91clobber:	$(CLOBBER_DEPS)
92
93lint:		$(LINT_DEPS)
94
95modlintlib:	$(MODLINTLIB_DEPS)
96
97clean.lint:	$(CLEAN_LINT_DEPS)
98
99install:	$(INSTALL_DEPS)
100
101#
102#	Include common targets.
103#
104include $(UTSBASE)/intel/Makefile.targ
105
106WARLOCK		= warlock
107WLCC		= wlcc
108TOUCH		= touch
109SDA_LLS		= $(SDA_OBJS:%.o= -l ../sda/%.ll)
110BLK2SCSA_LLS	= $(BLK2SCSA_OBJS:%.o= -l ../blk2scsa/%.ll)
111
112warlock:	$(WARLOCK_OK)
113
114blk2scsa.wl:
115	@cd ../blk2scsa; pwd; $(MAKE) warlock
116
117sda.wl:
118	@cd ../sda; pwd; $(MAKE) warlock
119
120$(WARLOCK_OK):	$(WARLOCK_OUT) $(WLCMD_DIR)/sdhost.wlcmd blk2scsa.wl sda.wl
121	$(WARLOCK) -c $(WLCMD_DIR)/sdhost.wlcmd $(WARLOCK_OUT) \
122		$(SDA_LLS) $(BLK2SCSA_LLS) \
123		-l ../warlock/ddi_dki_impl.ll
124	$(TOUCH) $@
125
126%.ll:	$(UTSBASE)/common/io/sdcard/adapters/sdhost/%.c
127	$(WLCC) $(CPPFLAGS) -DDEBUG -o $@ $<
128