xref: /titanic_41/usr/src/uts/sparc/ses/Makefile (revision bf56214c0556fa6864189c826d39dbe156bb22a0)
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# uts/sparc/ses/Makefile
23#
24# Copyright 2007 Sun Microsystems, Inc.  All rights reserved.
25# Use is subject to license terms.
26#
27#ident	"%Z%%M%	%I%	%E% SMI"
28#
29# This makefile drives the production of the ses driver kernel module.
30#
31# sparc architecture dependent
32#
33
34#
35# Path to the base of the uts directory tree (usually /usr/src/uts).
36#
37UTSBASE	= ../..
38
39#
40# Define the module and object file sets.
41#
42MODULE		= ses
43OBJECTS		= $(SES_OBJS:%=$(OBJS_DIR)/%)
44LINTS		= $(SES_OBJS:%.o=$(LINTS_DIR)/%.ln)
45ROOTMODULE	= $(ROOT_DRV_DIR)/$(MODULE)
46CONF_SRCDIR	= $(UTSBASE)/sun/io/scsi/targets
47WARLOCK_OUT     = $(SES_OBJS:%.o=%.ll)
48WARLOCK_OK      = $(MODULE).ok
49WLCMD_DIR	= $(UTSBASE)/common/io/warlock
50
51#
52# Include common rules.
53#
54include $(UTSBASE)/sparc/Makefile.sparc
55
56#
57# Define targets
58#
59ALL_TARGET	= $(BINARY) $(SRC_CONFILE)
60LINT_TARGET	= $(MODULE).lint
61INSTALL_TARGET	= $(BINARY) $(ROOTMODULE) $(ROOT_CONFFILE)
62CLEANFILES	+= $(WARLOCK_TARGETS)
63
64#
65# For now, disable these lint checks; maintainers should endeavor
66# to investigate and remove these for maximum lint coverage.
67# Please do not carry these forward to new Makefiles.
68#
69LINTTAGS	+= -erroff=E_BAD_PTR_CAST_ALIGN
70LINTTAGS	+= -erroff=E_ASSIGN_NARROW_CONV
71LINTTAGS	+= -erroff=E_SUSPICIOUS_COMPARISON
72
73#
74# Default build targets.
75#
76.KEEP_STATE:
77
78def:		$(DEF_DEPS)
79
80all:		$(ALL_DEPS)
81
82clean:		$(CLEAN_DEPS)
83		$(RM) $(WARLOCK_OUT) $(WARLOCK_OK)
84
85clobber:	$(CLOBBER_DEPS)
86		$(RM) $(WARLOCK_OUT) $(WARLOCK_OK)
87
88modlintlib:	$(MODLINTLIB_DEPS) lint64
89
90clean.lint:	$(CLEAN_LINT_DEPS)
91
92install:	$(INSTALL_DEPS)
93
94#
95#	Include common targets.
96#
97include $(UTSBASE)/sparc/Makefile.targ
98
99
100#
101# Defines for local commands.
102#
103WARLOCK		= warlock
104WLCC		= wlcc
105TOUCH		= touch
106TEST		= test
107
108#
109# Warlock targets
110#
111# XXX FIX ME.  this can be improved quite a bit
112
113SES_FILES	= $(MODULE).ll
114SCSI_FILES	= $(SCSI_OBJS:%.o=-l ../scsi/%.ll)
115
116WARLOCK_TARGETS	= $(WARLOCK_OK) warlock_with_esp.ok warlock_with_fas.ok
117$(CLOSED_BUILD)WARLOCK_TARGETS += warlock_with_isp.ok warlock_with_glm.ok
118
119warlock: $(WARLOCK_TARGETS)
120
121$(WARLOCK_OK): $(WLCMD_DIR)/$(MODULE).wlcmd $(SES_FILES)
122	@cd ../warlock; $(MAKE) warlock
123	@cd ../scsi; $(MAKE) warlock
124	$(WARLOCK) -c $(WLCMD_DIR)/$(MODULE).wlcmd $(SES_FILES) ../warlock/scsi.ll \
125	        -l ../warlock/ddi_dki_impl.ll  \
126	        $(SCSI_FILES)
127	@ $(TOUCH) $@
128
129warlock_with_esp.ok: $(WLCMD_DIR)/ses_with_esp.wlcmd $(SES_FILES)
130	@cd ../warlock; $(MAKE) warlock
131	@cd ../scsi; $(MAKE) warlock
132	@cd ../esp; $(MAKE) warlock;
133	$(WARLOCK) -c $(WLCMD_DIR)/ses_with_esp.wlcmd $(SES_FILES) ../esp/esp  \
134	        ../warlock/scsi.ll \
135	        -l ../warlock/ddi_dki_impl.ll \
136	        $(SCSI_FILES)
137	@ $(TOUCH) $@
138
139warlock_with_fas.ok: $(WLCMD_DIR)/ses_with_fas.wlcmd $(SES_FILES)
140	@cd ../warlock; $(MAKE) warlock
141	@cd ../scsi; $(MAKE) warlock
142	@cd ../fas; $(MAKE) warlock;
143	$(WARLOCK) -c $(WLCMD_DIR)/ses_with_fas.wlcmd $(SES_FILES) \
144	        ../fas/fas ../fas/fas_callbacks \
145	        ../warlock/scsi.ll \
146	        -l ../warlock/ddi_dki_impl.ll \
147	        $(SCSI_FILES)
148	@ $(TOUCH) $@
149
150warlock_with_isp.ok: $(WLCMD_DIR)/ses_with_isp.wlcmd $(SES_FILES)
151	@cd ../warlock; $(MAKE) warlock
152	@cd ../scsi; $(MAKE) warlock
153	@cd $(CLOSED)/uts/sparc/isp; $(MAKE) warlock;
154	$(WARLOCK) -c $(WLCMD_DIR)/ses_with_isp.wlcmd $(SES_FILES) \
155		$(CLOSED)/uts/sparc/isp/isp \
156	        ../warlock/scsi.ll \
157	        -l ../warlock/ddi_dki_impl.ll \
158	        $(SCSI_FILES)
159	@ $(TOUCH) $@
160
161warlock_with_glm.ok: $(WLCMD_DIR)/ses_with_glm.wlcmd $(SES_FILES)
162	@cd ../warlock; $(MAKE) warlock
163	@cd ../scsi; $(MAKE) warlock
164	@cd $(CLOSED)/uts/sparc/glm; $(MAKE) warlock;
165	$(WARLOCK) -c $(WLCMD_DIR)/ses_with_glm.wlcmd $(SES_FILES) \
166		$(CLOSED)/uts/sparc/glm/glm \
167	        ../warlock/scsi.ll \
168	        -l ../warlock/ddi_dki_impl.ll \
169	        $(SCSI_FILES)
170	@ $(TOUCH) $@
171
172%.ll: $(UTSBASE)/common/io/scsi/targets/%.c
173	$(WLCC) $(CPPFLAGS) -o $@ $<
174
175
176