xref: /illumos-gate/usr/src/uts/intel/ses/Makefile (revision b6805bf78d2bbbeeaea8909a05623587b42d58b3)
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/intel/ses/Makefile
23#
24# Copyright 2007 Sun Microsystems, Inc.  All rights reserved.
25# Use is subject to license terms.
26# Copyright (c) 2011 Bayard G. Bell. All rights reserved.
27#
28#	This makefile drives the production of the ses (SCSI enclosure
29#	services) driver kernel module.
30#
31#	intel implementation 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)/intel/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)/intel/Makefile.intel
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_ASSIGN_NARROW_CONV
70LINTTAGS	+= -erroff=E_BAD_PTR_CAST_ALIGN
71
72#
73# Depends on scsi
74#
75LDFLAGS         += -dy -N misc/scsi
76
77#
78#	Default build targets.
79#
80.KEEP_STATE:
81
82def:		$(DEF_DEPS)
83
84all:		$(ALL_DEPS)
85
86clean:		$(CLEAN_DEPS)
87		$(RM) $(WARLOCK_OUT) $(WARLOCK_OK)
88
89clobber:	$(CLOBBER_DEPS)
90		$(RM) $(WARLOCK_OUT) $(WARLOCK_OK)
91
92lint:		$(LINT_DEPS)
93
94modlintlib:	$(MODLINTLIB_DEPS)
95
96clean.lint:	$(CLEAN_LINT_DEPS)
97
98install:	$(INSTALL_DEPS)
99
100#
101#	Include common targets.
102#
103include $(UTSBASE)/intel/Makefile.targ
104
105
106#
107# Defines for local commands.
108#
109WARLOCK		= warlock
110WLCC		= wlcc
111TOUCH		= touch
112TEST		= test
113
114#
115# Warlock targets
116#
117SCSI_FILES	= $(SCSI_OBJS:%.o=-l ../scsi/%.ll)
118
119WARLOCK_TARGETS	= $(WARLOCK_OK)
120$(CLOSED_BUILD)WARLOCK_TARGETS += warlock_with_glm
121
122warlock: $(WARLOCK_TARGETS)
123
124# XXX FIX ME: why only ses.ll?
125
126$(WARLOCK_OK): $(WLCMD_DIR)/$(MODULE).wlcmd $(WARLOCK_OUT)
127	@cd ../warlock; $(MAKE) warlock
128	@cd ../scsi; $(MAKE) warlock
129	$(WARLOCK) -c $(WLCMD_DIR)/$(MODULE).wlcmd ses.ll \
130		../warlock/scsi.ll \
131	        -l ../warlock/ddi_dki_impl.ll  \
132	        $(SCSI_FILES)
133	@ $(TOUCH) $@
134
135%.ll: $(UTSBASE)/common/io/scsi/targets/%.c
136	$(WLCC) $(CPPFLAGS) -o $@ $<
137
138warlock_with_glm: $(WLCMD_DIR)/ses_with_glm.wlcmd $(WARLOCK_OUT) glm_files
139	@cd ../warlock; $(MAKE) warlock
140	@cd ../scsi; $(MAKE) warlock
141	@cd $(CLOSED)/uts/intel/glm; $(MAKE) warlock;
142	$(WARLOCK) -c $(WLCMD_DIR)/ses_with_glm.wlcmd ses.ll \
143		$(CLOSED)/uts/intel/glm/*.ll \
144	        $(SCSI_FILES) \
145		../warlock/scsi.ll \
146		-l ../warlock/ddi_dki_impl.ll
147
148glm_files:
149	@cd $(CLOSED)/uts/intel/glm; pwd; $(MAKE) warlock
150
151warlock_ddi.files:
152	@cd ../warlock; pwd; $(MAKE) warlock
153
154
155