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# Copyright 2007 Sun Microsystems, Inc. All rights reserved. 23# Use is subject to license terms. 24# 25# uts/sparc/scsa2usb/Makefile 26# 27# This makefile drives the production of the scsa2usb driver 28# kernel module. sparc architecture dependent 29# 30 31#ident "%Z%%M% %I% %E% SMI" 32 33# 34# Path to the base of the uts directory tree (usually /usr/src/uts). 35# 36UTSBASE = ../.. 37 38# 39# Define the module and object file sets. 40# 41MODULE = scsa2usb 42OBJECTS = $(SCSA2USB_OBJS:%=$(OBJS_DIR)/%) 43LINTS = $(SCSA2USB_OBJS:%.o=$(LINTS_DIR)/%.ln) 44ROOTMODULE = $(ROOT_DRV_DIR)/$(MODULE) 45CONF_SRCDIR = $(UTSBASE)/common/io/usb/scsa2usb 46WARLOCK_OUT = $(SCSA2USB_OBJS:%.o=%.ll) 47WARLOCK_OK = $(MODULE).ok 48WLCMD_DIR = $(UTSBASE)/common/io/warlock 49 50# 51# Include common rules. 52# 53include $(UTSBASE)/sparc/Makefile.sparc 54 55# 56# lint pass one enforcement 57# 58CFLAGS += $(CCVERBOSE) 59 60# depends on misc/usba misc/scsi 61# 62LDFLAGS += -dy -Nmisc/usba -Nmisc/scsi 63 64# 65# Define targets 66# 67ALL_TARGET = $(BINARY) $(SRC_CONFILE) 68LINT_TARGET = $(MODULE).lint 69INSTALL_TARGET = $(BINARY) $(ROOTMODULE) $(ROOT_CONFFILE) 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_PTRDIFF_OVERFLOW 78LINTTAGS += -erroff=E_ASSIGN_NARROW_CONV 79LINTTAGS += -erroff=E_STATIC_UNUSED 80LINTTAGS += -erroff=E_SUSPICIOUS_COMPARISON 81 82.KEEP_STATE: 83 84all: $(ALL_DEPS) 85 86def: $(DEF_DEPS) 87 88clean: $(CLEAN_DEPS) 89 $(RM) $(WARLOCK_OUT) $(WARLOCK_OK) 90 91clobber: $(CLOBBER_DEPS) 92 $(RM) $(WARLOCK_OUT) $(WARLOCK_OK) 93 94lint: $(LINT_DEPS) 95 96modlintlib: $(MODLINTLIB_DEPS) 97 98clean.lint: $(CLEAN_LINT_DEPS) 99 100install: $(INSTALL_DEPS) 101 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 113SCCS = sccs 114TEST = test 115 116# 117# lock_lint rules 118# 119USBA_FILES = $(USBA_OBJS:%.o=../usba/%.ll) 120UHCI_FILES = $(UHCI_OBJS:%.o=../uhci/%.ll) 121OHCI_FILES = $(OHCI_OBJS:%.o=../ohci/%.ll) 122EHCI_FILES = $(EHCI_OBJS:%.o=../ehci/%.ll) 123SD_FILES = $(SD_OBJS:%.o=../sd/%.ll) 124ST_FILES = $(ST_OBJS:%.o=../st/%.ll) 125SCSI_FILES = $(SCSI_OBJS:%.o= -l ../scsi/%.ll) 126CMLB_FILES = $(CMLB_OBJS:%.o=-l ../cmlb/%.ll) 127 128warlock: $(WARLOCK_OK) warlock_with_usba 129 130%.wlcmd: 131 cd $(WLCMD_DIR); $(TEST) -f $@ || $(SCCS) get $@ 132 133$(WARLOCK_OK): $(WARLOCK_OUT) scsa2usb.wlcmd warlock_ddi.files \ 134 scsi.files 135 $(WARLOCK) -c $(WLCMD_DIR)/scsa2usb.wlcmd $(WARLOCK_OUT) \ 136 ../warlock/scsi.ll \ 137 -l ../warlock/ddi_dki_impl.ll \ 138 $(SCSI_FILES) 139 $(TOUCH) $@ 140 141%.ll: $(UTSBASE)/common/io/usb/scsa2usb/%.c \ 142 $(UTSBASE)/common/sys/usb/clients/mass_storage/usb_bulkonly.h \ 143 $(UTSBASE)/common/sys/usb/clients/mass_storage/usb_cbi.h \ 144 $(UTSBASE)/common/sys/usb/scsa2usb/scsa2usb.h 145 $(WLCC) $(CPPFLAGS) -DDEBUG -o $@ $< 146 147warlock_with_usba: scsa2usb_with_usba.wlcmd $(WARLOCK_OUT) usba_files \ 148 ohci_files ehci_files uhci_files warlock_ddi.files sd.files st.files \ 149 scsi.files cmlb.files 150 $(WARLOCK) -c $(WLCMD_DIR)/scsa2usb_with_usba.wlcmd \ 151 $(USBA_FILES) $(OHCI_FILES) $(EHCI_FILES) $(UHCI_FILES) \ 152 $(SD_FILES) \ 153 $(ST_FILES) \ 154 $(SCSI_FILES) \ 155 $(CMLB_FILES) \ 156 $(WARLOCK_OUT) \ 157 -l ../warlock/ddi_dki_impl.ll 158 159usba_files: 160 @cd ../usba;pwd; $(MAKE) warlock 161 162uhci_files: 163 @cd ../uhci;pwd; $(MAKE) warlock 164 165ohci_files: 166 @cd ../ohci;pwd; $(MAKE) warlock 167 168ehci_files: 169 @cd ../ehci;pwd; $(MAKE) warlock 170 171warlock_ddi.files: 172 @cd ../warlock; pwd; $(MAKE) warlock 173 174scsi.files: 175 @cd ../scsi; pwd; $(MAKE) warlock 176 177sd.files: 178 @cd ../sd; pwd; $(MAKE) warlock_alone 179 180cmlb.files: 181 @cd ../cmlb; pwd; $(MAKE) warlock 182 183st.files: 184 @cd ../st; pwd; $(MAKE) warlock_alone 185