Makefile revision 4ebb14b236958cfe1ef4ff3b7a50216d9e51f997
bec154197d3d640b0d5b416cd5218ea58dca5d3aTinderbox User# CDDL HEADER START
5a4557e8de2951a2796676b5ec4b6a90caa5be14Mark Andrews# The contents of this file are subject to the terms of the
4a14ce5ba00ab7bc55c99ffdcf59c7a4ab902721Automatic Updater# Common Development and Distribution License (the "License").
5a4557e8de2951a2796676b5ec4b6a90caa5be14Mark Andrews# You may not use this file except in compliance with the License.
5a4557e8de2951a2796676b5ec4b6a90caa5be14Mark Andrews# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
5a4557e8de2951a2796676b5ec4b6a90caa5be14Mark Andrews# See the License for the specific language governing permissions
5a4557e8de2951a2796676b5ec4b6a90caa5be14Mark Andrews# and limitations under the License.
5a4557e8de2951a2796676b5ec4b6a90caa5be14Mark Andrews# When distributing Covered Code, include this CDDL HEADER in each
5a4557e8de2951a2796676b5ec4b6a90caa5be14Mark Andrews# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
5a4557e8de2951a2796676b5ec4b6a90caa5be14Mark Andrews# If applicable, add the following below this CDDL HEADER, with the
5a4557e8de2951a2796676b5ec4b6a90caa5be14Mark Andrews# fields enclosed by brackets "[]" replaced with your own identifying
ea94d370123a5892f6c47a97f21d1b28d44bb168Tinderbox User# information: Portions Copyright [yyyy] [name of copyright owner]
5a4557e8de2951a2796676b5ec4b6a90caa5be14Mark Andrews# CDDL HEADER END
5a4557e8de2951a2796676b5ec4b6a90caa5be14Mark Andrews# Copyright 2006 Sun Microsystems, Inc. All rights reserved.
0c6ada0a814f3c5417daa1654129bc2af56ed504Automatic Updater# Use is subject to license terms.
5a4557e8de2951a2796676b5ec4b6a90caa5be14Mark Andrews#ident "%Z%%M% %I% %E% SMI"
5a4557e8de2951a2796676b5ec4b6a90caa5be14Mark Andrews# This makefile drives the production of the sd driver kernel module.
5a4557e8de2951a2796676b5ec4b6a90caa5be14Mark Andrews# sparc architecture dependent
5a4557e8de2951a2796676b5ec4b6a90caa5be14Mark Andrews# Path to the base of the uts directory tree (usually /usr/src/uts).
5a4557e8de2951a2796676b5ec4b6a90caa5be14Mark Andrews# Define the module and object file sets.
5a4557e8de2951a2796676b5ec4b6a90caa5be14Mark Andrews# Include common rules.
5a4557e8de2951a2796676b5ec4b6a90caa5be14Mark Andrews# Define targets
5a4557e8de2951a2796676b5ec4b6a90caa5be14Mark AndrewsINSTALL_TARGET = $(BINARY) $(ROOTMODULE) $(ROOT_CONFFILE)
b2f07642fd712c8fda81a116bcdde229ab291f33Tinderbox User# lint pass one enforcement
b2f07642fd712c8fda81a116bcdde229ab291f33Tinderbox User# For now, disable these lint checks; maintainers should endeavor
b2f07642fd712c8fda81a116bcdde229ab291f33Tinderbox User# to investigate and remove these for maximum lint coverage.
b2f07642fd712c8fda81a116bcdde229ab291f33Tinderbox User# Please do not carry these forward to new Makefiles.
5a4557e8de2951a2796676b5ec4b6a90caa5be14Mark Andrews# Default build targets.
5a4557e8de2951a2796676b5ec4b6a90caa5be14Mark Andrews# Include common targets.
5a4557e8de2951a2796676b5ec4b6a90caa5be14Mark Andrews# Defines for local commands.
5a4557e8de2951a2796676b5ec4b6a90caa5be14Mark Andrews# Warlock targets
5a4557e8de2951a2796676b5ec4b6a90caa5be14Mark Andrews# Note that in warlock_with_{esp,isp} it is important to load sd.ll
5a4557e8de2951a2796676b5ec4b6a90caa5be14Mark Andrews# before {isp,esp}.ll; the reason is that both have _init/_info/_fini
5a4557e8de2951a2796676b5ec4b6a90caa5be14Mark Andrews# and warlock can only handle one extern function by a given name;
5a4557e8de2951a2796676b5ec4b6a90caa5be14Mark Andrews# any loaded after the first are ignored.
5a4557e8de2951a2796676b5ec4b6a90caa5be14Mark Andrewswarlock: warlock_alone warlock_with_esp warlock_with_isp warlock_with_fas \
5a4557e8de2951a2796676b5ec4b6a90caa5be14Mark Andrews warlock_with_glm warlock_with_uata warlock_with_mpt
5a4557e8de2951a2796676b5ec4b6a90caa5be14Mark Andrews cd $(WLCMD_DIR); $(TEST) -f $@ || $(SCCS) get $@
5a4557e8de2951a2796676b5ec4b6a90caa5be14Mark Andrews$(WARLOCK_OK): sd.wlcmd $(WARLOCK_OUT) scsi_files warlock_ddi.files
5a4557e8de2951a2796676b5ec4b6a90caa5be14Mark Andrews $(WARLOCK) -c $(WLCMD_DIR)/sd.wlcmd $(WARLOCK_OUT) $(SCSI_FILES) \
5a4557e8de2951a2796676b5ec4b6a90caa5be14Mark Andrewswarlock_with_esp: sd_with_esp.wlcmd $(WARLOCK_OUT) scsi_files esp_files \
0ccb0e98c77a9b9636a036f8f64f5679a430aaf4Tinderbox Userwarlock_with_fas: sd_with_fas.wlcmd $(WARLOCK_OUT) scsi_files fas_files \
94479b38340a00f0daf0ae0e1d3d673f845609ffTinderbox User $(WARLOCK) -c $(WLCMD_DIR)/sd_with_fas.wlcmd \
0ccb0e98c77a9b9636a036f8f64f5679a430aaf4Tinderbox Userwarlock_with_isp: sd_with_isp.wlcmd $(WARLOCK_OUT) scsi_files isp_files \
0ccb0e98c77a9b9636a036f8f64f5679a430aaf4Tinderbox User $(WARLOCK) -c $(WLCMD_DIR)/sd_with_isp.wlcmd \
0ccb0e98c77a9b9636a036f8f64f5679a430aaf4Tinderbox User $(WARLOCK_OUT) $(CLOSED)/uts/sparc/isp/isp $(SCSI_FILES) \
0ccb0e98c77a9b9636a036f8f64f5679a430aaf4Tinderbox Userwarlock_with_glm: sd_with_glm.wlcmd $(WARLOCK_OUT) scsi_files glm_files \
0ccb0e98c77a9b9636a036f8f64f5679a430aaf4Tinderbox User $(WARLOCK) -c $(WLCMD_DIR)/sd_with_glm.wlcmd \
0ccb0e98c77a9b9636a036f8f64f5679a430aaf4Tinderbox User $(WARLOCK_OUT) $(CLOSED)/uts/sparc/glm/glm $(SCSI_FILES) \
0ccb0e98c77a9b9636a036f8f64f5679a430aaf4Tinderbox Userwarlock_with_uata: sd_with_uata.wlcmd $(WARLOCK_OUT) scsi_files uata_files \
0ccb0e98c77a9b9636a036f8f64f5679a430aaf4Tinderbox User $(WARLOCK) -c $(WLCMD_DIR)/sd_with_uata.wlcmd \
0ccb0e98c77a9b9636a036f8f64f5679a430aaf4Tinderbox User $(WARLOCK_OUT) $(CLOSED)/uts/sparc/uata/*.ll $(SCSI_FILES) \
0ccb0e98c77a9b9636a036f8f64f5679a430aaf4Tinderbox Userwarlock_with_mpt: sd_with_mpt.wlcmd $(WARLOCK_OUT) scsi_files mpt_files \
0ccb0e98c77a9b9636a036f8f64f5679a430aaf4Tinderbox User $(WARLOCK) -c $(WLCMD_DIR)/sd_with_mpt.wlcmd \
0ccb0e98c77a9b9636a036f8f64f5679a430aaf4Tinderbox User $(WARLOCK_OUT) $(CLOSED)/uts/sparc/mpt/*.ll $(SCSI_FILES) \
0ccb0e98c77a9b9636a036f8f64f5679a430aaf4Tinderbox User @cd $(CLOSED)/uts/sparc/isp; pwd; $(MAKE) warlock
0ccb0e98c77a9b9636a036f8f64f5679a430aaf4Tinderbox User @cd $(CLOSED)/uts/sparc/glm; pwd; $(MAKE) warlock
0ccb0e98c77a9b9636a036f8f64f5679a430aaf4Tinderbox User @cd $(CLOSED)/uts/sparc/uata; pwd; $(MAKE) warlock
0ccb0e98c77a9b9636a036f8f64f5679a430aaf4Tinderbox User @cd $(CLOSED)/uts/sparc/mpt; pwd; $(MAKE) warlock