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# uts/sparc/st/Makefile 22# 23# Copyright 2007 Sun Microsystems, Inc. All rights reserved. 24# Use is subject to license terms. 25# Copyright (c) 2011 Bayard G. Bell. All rights reserved. 26# 27# This makefile drives the production of the st driver kernel module. 28# 29# sparc architecture dependent 30# 31 32# 33# Path to the base of the uts directory tree (usually /usr/src/uts). 34# 35UTSBASE = ../.. 36 37# 38# Define the module and object file sets. 39# 40MODULE = st 41OBJECTS = $(ST_OBJS:%=$(OBJS_DIR)/%) 42LINTS = $(ST_OBJS:%.o=$(LINTS_DIR)/%.ln) 43ROOTMODULE = $(ROOT_DRV_DIR)/$(MODULE) 44CONF_SRCDIR = $(UTSBASE)/sun/io/scsi/targets 45WARLOCK_OUT = $(ST_OBJS:%.o=%.ll) 46WARLOCK_OK = $(MODULE).ok 47WLCMD_DIR = $(UTSBASE)/common/io/warlock 48 49# 50# Include common rules. 51# 52include $(UTSBASE)/sparc/Makefile.sparc 53 54# 55# Define targets 56# 57ALL_TARGET = $(BINARY) $(SRC_CONFILE) 58LINT_TARGET = $(MODULE).lint 59INSTALL_TARGET = $(BINARY) $(ROOTMODULE) $(ROOT_CONFFILE) 60 61# 62# lint pass one enforcement 63# 64CFLAGS += $(CCVERBOSE) 65 66# 67# Define dependency on scsi 68# 69LDFLAGS += -dy -N misc/scsi 70 71# 72# For now, disable these lint checks; maintainers should endeavor 73# to investigate and remove these for maximum lint coverage. 74# Please do not carry these forward to new Makefiles. 75# 76LINTTAGS += -erroff=E_BAD_PTR_CAST_ALIGN 77LINTTAGS += -erroff=E_ASSIGN_NARROW_CONV 78LINTTAGS += -erroff=E_SUSPICIOUS_COMPARISON 79 80# 81# Default build targets. 82# 83.KEEP_STATE: 84 85all: $(ALL_DEPS) 86 87def: $(DEF_DEPS) 88 89clean: $(CLEAN_DEPS) 90 $(RM) $(WARLOCK_OUT) $(WARLOCK_OK) 91 92clobber: $(CLOBBER_DEPS) 93 $(RM) $(WARLOCK_OUT) $(WARLOCK_OK) 94 95lint: $(LINT_DEPS) 96 97modlintlib: $(MODLINTLIB_DEPS) 98 99clean.lint: $(CLEAN_LINT_DEPS) 100 101install: $(INSTALL_DEPS) 102 103# Include common targets. 104# 105include $(UTSBASE)/sparc/Makefile.targ 106 107# 108# Defines for local commands. 109# 110WARLOCK = warlock 111WLCC = wlcc 112TOUCH = touch 113TEST = test 114 115# 116# Warlock targets 117# 118# Note that in warlock_with_{esp,isp} it is important to load st.ll 119# before {isp,esp}.ll; the reason is that both have _init/_info/_fini 120# and warlock can only handle one extern function by a given name; 121# any loaded after the first are ignored. 122 123SCSI_FILES = $(SCSI_OBJS:%.o=-l ../scsi/%.ll) 124 125WARLOCK_TARGETS = warlock_alone warlock_with_esp warlock_with_fas 126$(CLOSED_BUILD)WARLOCK_TARGETS += warlock_with_isp warlock_with_glm 127 128warlock: $(WARLOCK_TARGETS) 129 130warlock_alone: $(WARLOCK_OK) 131 132warlock_with_esp: $(WLCMD_DIR)/st_with_esp.wlcmd $(WARLOCK_OUT) scsi_files \ 133 esp_files warlock_ddi.files 134 $(WARLOCK) -c $(WLCMD_DIR)/st_with_esp.wlcmd \ 135 $(WARLOCK_OUT) ../esp/esp $(SCSI_FILES) \ 136 -l ../warlock/ddi_dki_impl.ll 137 138warlock_with_fas: $(WLCMD_DIR)/st_with_fas.wlcmd $(WARLOCK_OUT) scsi_files \ 139 fas_files warlock_ddi.files 140 $(WARLOCK) -c $(WLCMD_DIR)/st_with_fas.wlcmd \ 141 $(WARLOCK_OUT) \ 142 ../fas/fas ../fas/fas_callbacks \ 143 $(SCSI_FILES) \ 144 -l ../warlock/ddi_dki_impl.ll 145 146warlock_with_isp: $(WLCMD_DIR)/st_with_isp.wlcmd $(WARLOCK_OUT) scsi_files \ 147 isp_files warlock_ddi.files 148 $(WARLOCK) -c $(WLCMD_DIR)/st_with_isp.wlcmd \ 149 $(WARLOCK_OUT) $(CLOSED)/uts/sparc/isp/isp $(SCSI_FILES) \ 150 -l ../warlock/ddi_dki_impl.ll 151 152warlock_with_glm: $(WLCMD_DIR)/st_with_glm.wlcmd $(WARLOCK_OUT) scsi_files \ 153 glm_files warlock_ddi.files 154 $(WARLOCK) -c $(WLCMD_DIR)/st_with_glm.wlcmd \ 155 $(WARLOCK_OUT) $(CLOSED)/uts/sparc/glm/glm $(SCSI_FILES) \ 156 -l ../warlock/ddi_dki_impl.ll 157 158scsi_files: 159 @cd ../scsi; pwd; $(MAKE) warlock 160 161esp_files: 162 @cd ../esp; pwd; $(MAKE) warlock 163 164fas_files: 165 @cd ../fas; pwd; $(MAKE) warlock 166 167isp_files: 168 @cd $(CLOSED)/uts/sparc/isp; pwd; $(MAKE) warlock 169 170glm_files: 171 @cd $(CLOSED)/uts/sparc/glm; pwd; $(MAKE) warlock 172 173st.ok: $(WLCMD_DIR)/st.wlcmd st.ll st_conf.ll scsi_files warlock_ddi.files 174 $(WARLOCK) -c $(WLCMD_DIR)/st.wlcmd $(WARLOCK_OUT) $(SCSI_FILES) \ 175 -l ../warlock/ddi_dki_impl.ll 176 $(TOUCH) $@ 177 178%.ll: $(UTSBASE)/common/io/scsi/targets/%.c 179 $(WLCC) $(CPPFLAGS) -DDEBUG -o $@ $< 180 181warlock_ddi.files: 182 @cd ../warlock; pwd; $(MAKE) warlock 183 184scsi.files: 185 @cd ../scsi; pwd; $(MAKE) warlock 186