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/ssd/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# 30# This makefile drives the production of the ssd driver kernel module. 31# 32# sparc architecture dependent 33# 34 35# 36# Path to the base of the uts directory tree (usually /usr/src/uts). 37# 38UTSBASE = ../.. 39 40# 41# Define the module and object file sets. 42# 43MODULE = ssd 44OBJECTS = $(SSD_OBJS:%=$(OBJS_DIR)/%) 45LINTS = $(SSD_OBJS:%.o=$(LINTS_DIR)/%.ln) 46ROOTMODULE = $(ROOT_DRV_DIR)/$(MODULE) 47CONF_SRCDIR = $(UTSBASE)/sun/io/scsi/targets 48WARLOCK_OUT = ssd.ll 49WARLOCK_OK = $(MODULE).ok 50WLCMD_DIR = $(UTSBASE)/common/io/warlock 51 52# 53# Include common rules. 54# 55include $(UTSBASE)/sparc/Makefile.sparc 56 57# 58# Define targets 59# 60ALL_TARGET = $(BINARY) $(SRC_CONFILE) 61LINT_TARGET = $(MODULE).lint 62INSTALL_TARGET = $(BINARY) $(ROOTMODULE) $(ROOT_CONFFILE) 63 64# 65# lint pass one enforcement 66# 67CFLAGS += $(CCVERBOSE) -D__fibre -dalign 68LINTFLAGS += -D__fibre 69WLCCFLAGS = -D__fibre 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_STATIC_UNUSED 79LINTTAGS += -erroff=E_SUSPICIOUS_COMPARISON 80 81# 82# Default build targets. 83# 84.KEEP_STATE: 85 86all: $(ALL_DEPS) 87 88def: $(DEF_DEPS) 89 90clean: $(CLEAN_DEPS) 91 $(RM) $(WARLOCK_OUT) $(WARLOCK_OK) 92 93clobber: $(CLOBBER_DEPS) 94 $(RM) $(WARLOCK_OUT) $(WARLOCK_OK) 95 96lint: $(LINT_DEPS) 97 98modlintlib: $(MODLINTLIB_DEPS) 99 100clean.lint: $(CLEAN_LINT_DEPS) 101 102install: $(INSTALL_DEPS) 103 104# 105# Include common targets. 106# 107include $(UTSBASE)/sparc/Makefile.targ 108 109browser: $(BINARY) 110 111browser := CFLAGS += -xsb 112 113# 114# Defines for local commands. 115# 116WARLOCK = warlock 117WLCC = wlcc 118TOUCH = touch 119TEST = test 120 121# 122# Warlock targets 123 124SCSI_FILES = $(SCSI_OBJS:%.o=-l ../scsi/%.ll) 125CMLB_FILES = $(CMLB_OBJS:%.o=-l ../cmlb/%.ll) 126 127warlock: warlock_alone 128 129warlock_alone: $(WARLOCK_OK) 130 131scsi_files: 132 @cd ../scsi; pwd; $(MAKE) warlock 133 134cmlb_files: 135 @cd ../cmlb; pwd; $(MAKE) warlock 136 137$(WARLOCK_OK): $(WLCMD_DIR)/ssd.wlcmd $(WARLOCK_OUT) scsi.files cmlb_files 138 $(WARLOCK) -c $(WLCMD_DIR)/ssd.wlcmd $(WARLOCK_OUT) \ 139 $(SCSI_FILES) $(CMLB_FILES) \ 140 -l ../warlock/ddi_dki_impl.ll 141 $(TOUCH) $@ 142 143ssd.ll: $(UTSBASE)/common/io/scsi/targets/sd.c 144 $(WLCC) $(CPPFLAGS) $(WLCCFLAGS) -DDEBUG -o $@ $(UTSBASE)/common/io/scsi/targets/sd.c 145 146warlock_ddi.files: 147 @cd ../warlock; pwd; $(MAKE) warlock 148 149scsi.files: 150 @cd ../scsi; pwd; $(MAKE) warlock 151