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 2009 Sun Microsystems, Inc. All rights reserved. 23 # Use is subject to license terms. 24 # 25 # Copyright 2014 Garrett D'Amore <garrett@damore.org> 26 # 27 # uts/sparc/scsa2usb/Makefile 28 # 29 # This makefile drives the production of the scsa2usb driver 30 # kernel module. sparc architecture dependent 31 # 32 33 34 # 35 # Path to the base of the uts directory tree (usually /usr/src/uts). 36 # 37 UTSBASE = ../.. 38 39 # 40 # Define the module and object file sets. 41 # 42 MODULE = scsa2usb 43 OBJECTS = $(SCSA2USB_OBJS:%=$(OBJS_DIR)/%) 44 LINTS = $(SCSA2USB_OBJS:%.o=$(LINTS_DIR)/%.ln) 45 ROOTMODULE = $(ROOT_DRV_DIR)/$(MODULE) 46 CONF_SRCDIR = $(UTSBASE)/common/io/usb/scsa2usb 47 WARLOCK_OUT = $(SCSA2USB_OBJS:%.o=%.ll) 48 WARLOCK_OK = $(MODULE).ok 49 WLCMD_DIR = $(UTSBASE)/common/io/warlock 50 51 # 52 # Include common rules. 53 # 54 include $(UTSBASE)/sparc/Makefile.sparc 55 56 # 57 # lint pass one enforcement 58 # 59 CFLAGS += $(CCVERBOSE) 60 61 # depends on misc/usba misc/scsi 62 # 63 LDFLAGS += -dy -Nmisc/usba -Nmisc/scsi 64 65 # 66 # Define targets 67 # 68 ALL_TARGET = $(BINARY) $(SRC_CONFILE) 69 LINT_TARGET = $(MODULE).lint 70 INSTALL_TARGET = $(BINARY) $(ROOTMODULE) $(ROOT_CONFFILE) 71 72 CERRWARN += -_gcc=-Wno-unused-label 73 CERRWARN += -_gcc=-Wno-uninitialized 74 75 # 76 # For now, disable these lint checks; maintainers should endeavor 77 # to investigate and remove these for maximum lint coverage. 78 # Please do not carry these forward to new Makefiles. 79 # 80 LINTTAGS += -erroff=E_BAD_PTR_CAST_ALIGN 81 82 .KEEP_STATE: 83 84 all: $(ALL_DEPS) 85 86 def: $(DEF_DEPS) 87 88 clean: $(CLEAN_DEPS) 89 $(RM) $(WARLOCK_OUT) $(WARLOCK_OK) 90 91 clobber: $(CLOBBER_DEPS) 92 $(RM) $(WARLOCK_OUT) $(WARLOCK_OK) 93 94 lint: $(LINT_DEPS) 95 96 modlintlib: $(MODLINTLIB_DEPS) 97 98 clean.lint: $(CLEAN_LINT_DEPS) 99 100 install: $(INSTALL_DEPS) 101 102 # 103 # Include common targets. 104 # 105 include $(UTSBASE)/sparc/Makefile.targ 106 107 # 108 # Defines for local commands. 109 # 110 WARLOCK = warlock 111 WLCC = wlcc 112 TOUCH = touch 113 TEST = test 114 115 # 116 # lock_lint rules 117 # 118 USBA_FILES = $(USBA_OBJS:%.o=../usba/%.ll) 119 UHCI_FILES = $(UHCI_OBJS:%.o=../uhci/%.ll) 120 OHCI_FILES = $(OHCI_OBJS:%.o=../ohci/%.ll) 121 EHCI_FILES = $(EHCI_OBJS:%.o=../ehci/%.ll) 122 SD_FILES = $(SD_OBJS:%.o=../sd/%.ll) 123 ST_FILES = $(ST_OBJS:%.o=../st/%.ll) 124 SCSI_FILES = $(SCSI_OBJS:%.o= -l ../scsi/%.ll) 125 CMLB_FILES = $(CMLB_OBJS:%.o=-l ../cmlb/%.ll) 126 127 warlock: $(WARLOCK_OK) warlock_with_usba 128 129 $(WARLOCK_OK): $(WARLOCK_OUT) $(WLCMD_DIR)/scsa2usb.wlcmd warlock_ddi.files \ 130 scsi.files 131 $(WARLOCK) -c $(WLCMD_DIR)/scsa2usb.wlcmd $(WARLOCK_OUT) \ 132 ../warlock/scsi.ll \ 133 -l ../warlock/ddi_dki_impl.ll \ 134 $(SCSI_FILES) 135 $(TOUCH) $@ 136 137 %.ll: $(UTSBASE)/common/io/usb/scsa2usb/%.c \ 138 $(UTSBASE)/common/sys/usb/clients/mass_storage/usb_bulkonly.h \ 139 $(UTSBASE)/common/sys/usb/clients/mass_storage/usb_cbi.h \ 140 $(UTSBASE)/common/sys/usb/scsa2usb/scsa2usb.h 141 $(WLCC) $(CPPFLAGS) -DDEBUG -o $@ $< 142 143 warlock_with_usba: $(WLCMD_DIR)/scsa2usb_with_usba.wlcmd $(WARLOCK_OUT) \ 144 usba_files ohci_files ehci_files uhci_files warlock_ddi.files sd.files \ 145 st.files scsi.files cmlb.files 146 $(WARLOCK) -c $(WLCMD_DIR)/scsa2usb_with_usba.wlcmd \ 147 $(USBA_FILES) $(OHCI_FILES) $(EHCI_FILES) $(UHCI_FILES) \ 148 $(SD_FILES) \ 149 $(ST_FILES) \ 150 $(SCSI_FILES) \ 151 $(CMLB_FILES) \ 152 $(WARLOCK_OUT) \ 153 -l ../warlock/ddi_dki_impl.ll 154 155 usba_files: 156 @cd ../usba;pwd; $(MAKE) warlock 157 158 uhci_files: 159 @cd ../uhci;pwd; $(MAKE) warlock 160 161 ohci_files: 162 @cd ../ohci;pwd; $(MAKE) warlock 163 164 ehci_files: 165 @cd ../ehci;pwd; $(MAKE) warlock 166 167 warlock_ddi.files: 168 @cd ../warlock; pwd; $(MAKE) warlock 169 170 scsi.files: 171 @cd ../scsi; pwd; $(MAKE) warlock 172 173 sd.files: 174 @cd ../sd; pwd; $(MAKE) warlock_alone 175 176 cmlb.files: 177 @cd ../cmlb; pwd; $(MAKE) warlock 178 179 st.files: 180 @cd ../st; pwd; $(MAKE) warlock_alone