Makefile revision bf56214c0556fa6864189c826d39dbe156bb22a0
6fe48fb46e53ffc37542853a1edb74cb481b7d94Automatic Updater# CDDL HEADER START
7a42357217528037bdfedcb17eeebfe96ae4266aAutomatic Updater# The contents of this file are subject to the terms of the
1167fc7904c5f0a472f8df207ac46dd52c7f1ec8Automatic Updater# Common Development and Distribution License (the "License").
0c39b3ed9409ecb277d5e32fa763a4e4d6598df8Automatic Updater# You may not use this file except in compliance with the License.
710bce1a85c96e85ca1a90471382055acd29d51fTinderbox User# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
fe84edc17e0d582cf7b4270f8df9d4742a107b1cAutomatic Updater# or http://www.opensolaris.org/os/licensing.
79b273c187a4aa1016a62181983dfdd0521681aeMark Andrews# See the License for the specific language governing permissions
3349f0044fda807e1fd6681c833d3593a22dad86Tinderbox User# and limitations under the License.
b253dcf9668f95e141bce9556dc88e30d3305a1dTinderbox User# When distributing Covered Code, include this CDDL HEADER in each
b886b04d8d2b085cbf3e1bf4442dee87f43ba5e4Tinderbox User# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
710bce1a85c96e85ca1a90471382055acd29d51fTinderbox User# If applicable, add the following below this CDDL HEADER, with the
1ac49378a458420bc685293d12e567d7222d17b6Tinderbox User# fields enclosed by brackets "[]" replaced with your own identifying
bbde8dc56605130058a1540609264fa109da3b63Automatic Updater# information: Portions Copyright [yyyy] [name of copyright owner]
e130ab53e992670e2a2ecf043976ac09f21358d1Automatic Updater# CDDL HEADER END
a01aa536188bb3535dfc1107a623e6355a8e6b7cMark Andrews# Copyright 2007 Sun Microsystems, Inc. All rights reserved.
89623368b8f662d458d9964b923050f33c5f75b0Tinderbox User# Use is subject to license terms.
f2770f6b39a9b2a98afb7a11ed105f73f1570c1eAutomatic Updater#ident "%Z%%M% %I% %E% SMI"
f2770f6b39a9b2a98afb7a11ed105f73f1570c1eAutomatic Updater# This makefile drives the production of the st driver kernel module.
f2770f6b39a9b2a98afb7a11ed105f73f1570c1eAutomatic Updater# sparc architecture dependent
b886b04d8d2b085cbf3e1bf4442dee87f43ba5e4Tinderbox User# Path to the base of the uts directory tree (usually /usr/src/uts).
aa9c561961e9d877946ebaa8795fa2be054ab7bfEvan Hunt# Define the module and object file sets.
2d2dc37599979c83495510f8af8d1756753aa2c5Automatic UpdaterCONF_SRCDIR = $(UTSBASE)/sun/io/scsi/targets
cdfc81e048bd34c1d628380247bda6b80a89e20eAutomatic Updater# Include common rules.
9513a2a6670951f5cf5477fcfec9f933fcaff628Automatic Updater# Define targets
b886b04d8d2b085cbf3e1bf4442dee87f43ba5e4Tinderbox UserINSTALL_TARGET = $(BINARY) $(ROOTMODULE) $(ROOT_CONFFILE)
6fe48fb46e53ffc37542853a1edb74cb481b7d94Automatic Updater# lint pass one enforcement
c59750de3ea3c7d5890000fb4606e8f5835a52aaTinderbox User# For now, disable these lint checks; maintainers should endeavor
80faf1588895fd26490f82f95a7a1b771df1c324Automatic Updater# to investigate and remove these for maximum lint coverage.
c651f15b30f1dae5cc2f00878fb5da5b3a35a468Mark Andrews# Please do not carry these forward to new Makefiles.
693c4232dfdffaff672197d4b9fea944c64cf80aAutomatic UpdaterLINTTAGS += -erroff=E_SUSPICIOUS_COMPARISON
91216cff91b34c9ff6e846dc23f248219cafe660Andreas Gustafsson# Default build targets.
3349f0044fda807e1fd6681c833d3593a22dad86Tinderbox User# Include common targets.
78f3ed4bc2fcd3d270bfd599804f3b27a1db4d91Mark Andrews# Defines for local commands.
c651f15b30f1dae5cc2f00878fb5da5b3a35a468Mark Andrews# Warlock targets
b871c7156eb037d41f53828c6fcb9cc876128962Mark Andrews# Note that in warlock_with_{esp,isp} it is important to load st.ll
b871c7156eb037d41f53828c6fcb9cc876128962Mark Andrews# before {isp,esp}.ll; the reason is that both have _init/_info/_fini
01a5c5503482fb3ba52088bf0178a7213273bf96Mark Andrews# and warlock can only handle one extern function by a given name;
b871c7156eb037d41f53828c6fcb9cc876128962Mark Andrews# any loaded after the first are ignored.
f2770f6b39a9b2a98afb7a11ed105f73f1570c1eAutomatic UpdaterSCSI_FILES = $(SCSI_OBJS:%.o=-l ../scsi/%.ll)
f2770f6b39a9b2a98afb7a11ed105f73f1570c1eAutomatic UpdaterWARLOCK_TARGETS = warlock_alone warlock_with_esp warlock_with_fas
fe80a4909bf62b602feaf246866e9d29f7654194Automatic Updater$(CLOSED_BUILD)WARLOCK_TARGETS += warlock_with_isp warlock_with_glm
91216cff91b34c9ff6e846dc23f248219cafe660Andreas Gustafssonwarlock_with_esp: $(WLCMD_DIR)/st_with_esp.wlcmd $(WARLOCK_OUT) scsi_files \
91216cff91b34c9ff6e846dc23f248219cafe660Andreas Gustafsson $(WARLOCK_OUT) ../esp/esp $(SCSI_FILES) \
dd65eb1efb40b1c47d57963192bfc54873b219beAutomatic Updaterwarlock_with_fas: $(WLCMD_DIR)/st_with_fas.wlcmd $(WARLOCK_OUT) scsi_files \
133e6d43fa82e80d3798be4de00f4540f485ec6cAutomatic Updater $(WARLOCK) -c $(WLCMD_DIR)/st_with_fas.wlcmd \
710bce1a85c96e85ca1a90471382055acd29d51fTinderbox Userwarlock_with_isp: $(WLCMD_DIR)/st_with_isp.wlcmd $(WARLOCK_OUT) scsi_files \
1368e4b34cef64604c874fcc40201c78e548714cTinderbox User $(WARLOCK) -c $(WLCMD_DIR)/st_with_isp.wlcmd \
b886b04d8d2b085cbf3e1bf4442dee87f43ba5e4Tinderbox User $(WARLOCK_OUT) $(CLOSED)/uts/sparc/isp/isp $(SCSI_FILES) \
8f2c45a35dd8c40bcc9caba8f7d40ce64fc27bcdAutomatic Updaterwarlock_with_glm: $(WLCMD_DIR)/st_with_glm.wlcmd $(WARLOCK_OUT) scsi_files \
8f2c45a35dd8c40bcc9caba8f7d40ce64fc27bcdAutomatic Updater $(WARLOCK) -c $(WLCMD_DIR)/st_with_glm.wlcmd \
b886b04d8d2b085cbf3e1bf4442dee87f43ba5e4Tinderbox User $(WARLOCK_OUT) $(CLOSED)/uts/sparc/glm/glm $(SCSI_FILES) \
ce9cad6bb04869c5e94d9dc721032b25117f9210Automatic Updater @cd $(CLOSED)/uts/sparc/isp; pwd; $(MAKE) warlock
ce9cad6bb04869c5e94d9dc721032b25117f9210Automatic Updater @cd $(CLOSED)/uts/sparc/glm; pwd; $(MAKE) warlock
59528addd704f8d5757b54e540520f74e588a7c7Automatic Updaterst.ok: $(WLCMD_DIR)/st.wlcmd st.ll st_conf.ll scsi_files warlock_ddi.files
ce9cad6bb04869c5e94d9dc721032b25117f9210Automatic Updater $(WARLOCK) -c $(WLCMD_DIR)/st.wlcmd $(WARLOCK_OUT) $(SCSI_FILES) \