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/usb_ia/Makefile 23 24 # Copyright 2009 Sun Microsystems, Inc. All rights reserved. 25 # Use is subject to license terms. 26 # 27 # This makefile drives the production of the usb_ia driver kernel module. 28 # sparc architecture dependent 29 # 30 31 32 # 33 # Path to the base of the uts directory tree (usually /usr/src/uts). 34 # 35 UTSBASE = ../.. 36 37 # 38 # Define the module and object file sets. 39 # 40 MODULE = usb_ia 41 OBJECTS = $(USB_IA_OBJS:%=$(OBJS_DIR)/%) 42 LINTS = $(USB_IA_OBJS:%.o=$(LINTS_DIR)/%.ln) 43 ROOTMODULE = $(ROOT_DRV_DIR)/$(MODULE) 44 WARLOCK_OUT = $(USB_IA_OBJS:%.o=%.ll) 45 WARLOCK_OK = $(MODULE).ok 46 WLCMD_DIR = $(UTSBASE)/common/io/warlock 47 48 # 49 # Include common rules. 50 # 51 include $(UTSBASE)/sparc/Makefile.sparc 52 53 # 54 # lint pass one enforcement 55 # 56 CFLAGS += $(CCVERBOSE) 57 58 # 59 # depends on misc/usba 60 # 61 LDFLAGS += -dy -Nmisc/usba 62 63 # 64 # Define targets 65 # 66 ALL_TARGET = $(BINARY) 67 LINT_TARGET = $(MODULE).lint 68 INSTALL_TARGET = $(BINARY) $(ROOTMODULE) 69 70 .KEEP_STATE: 71 72 all: $(ALL_DEPS) 73 74 def: $(DEF_DEPS) 75 76 clean: $(CLEAN_DEPS) 77 $(RM) $(WARLOCK_OUT) $(WARLOCK_OK) 78 79 clobber: $(CLOBBER_DEPS) 80 $(RM) $(WARLOCK_OUT) $(WARLOCK_OK) 81 82 lint: $(LINT_DEPS) 83 84 modlintlib: $(MODLINTLIB_DEPS) 85 86 clean.lint: $(CLEAN_LINT_DEPS) 87 88 install: $(INSTALL_DEPS) 89 90 # 91 # Include common targets. 92 # 93 include $(UTSBASE)/sparc/Makefile.targ 94 95 # 96 # Defines for local commands. 97 # 98 WARLOCK = warlock 99 WLCC = wlcc 100 TOUCH = touch 101 TEST = test 102 103 # 104 # lock_lint rules 105 # 106 USBA_FILES = $(USBA_WITHOUT_WUSB_OBJS:%.o=../usba/%.ll) 107 UHCI_FILES = $(UHCI_OBJS:%.o=../uhci/%.ll) 108 OHCI_FILES = $(OHCI_OBJS:%.o=../ohci/%.ll) 109 EHCI_FILES = $(EHCI_OBJS:%.o=../ehci/%.ll) 110 111 warlock: $(WARLOCK_OK) warlock_with_usba 112 113 $(WARLOCK_OK): $(WARLOCK_OUT) $(WLCMD_DIR)/usb_ia.wlcmd warlock_ddi.files 114 $(WARLOCK) -c $(WLCMD_DIR)/usb_ia.wlcmd $(WARLOCK_OUT) \ 115 -l ../warlock/ddi_dki_impl.ll 116 $(TOUCH) $@ 117 118 %.ll: $(UTSBASE)/common/io/usb/usb_ia/%.c \ 119 $(UTSBASE)/common/sys/usb/usb_ia/usb_iavar.h 120 $(WLCC) $(CPPFLAGS) -DDEBUG -o $@ $< 121 122 warlock_with_usba: $(WLCMD_DIR)/usb_ia_with_usba.wlcmd $(WARLOCK_OUT) \ 123 usba_files ohci_files ehci_files uhci_files warlock_ddi.files 124 $(WARLOCK) -c $(WLCMD_DIR)/usb_ia_with_usba.wlcmd \ 125 $(USBA_FILES) $(OHCI_FILES) $(EHCI_FILES) $(UHCI_FILES) \ 126 $(WARLOCK_OUT) \ 127 -l ../warlock/ddi_dki_impl.ll 128 129 130 usba_files: 131 @cd ../usba;pwd; $(MAKE) warlock 132 133 uhci_files: 134 @cd ../uhci;pwd; $(MAKE) warlock 135 136 ohci_files: 137 @cd ../ohci;pwd; $(MAKE) warlock 138 139 ehci_files: 140 @cd ../ehci;pwd; $(MAKE) warlock 141 142 warlock_ddi.files: 143 cd ../warlock; pwd; $(MAKE) warlock