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# 35UTSBASE = ../.. 36 37# 38# Define the module and object file sets. 39# 40MODULE = usb_ia 41OBJECTS = $(USB_IA_OBJS:%=$(OBJS_DIR)/%) 42LINTS = $(USB_IA_OBJS:%.o=$(LINTS_DIR)/%.ln) 43ROOTMODULE = $(ROOT_DRV_DIR)/$(MODULE) 44WARLOCK_OUT = $(USB_IA_OBJS:%.o=%.ll) 45WARLOCK_OK = $(MODULE).ok 46WLCMD_DIR = $(UTSBASE)/common/io/warlock 47 48# 49# Include common rules. 50# 51include $(UTSBASE)/sparc/Makefile.sparc 52 53# 54# lint pass one enforcement 55# 56CFLAGS += $(CCVERBOSE) 57 58# 59# depends on misc/usba 60# 61LDFLAGS += -dy -Nmisc/usba 62 63# 64# Define targets 65# 66ALL_TARGET = $(BINARY) 67LINT_TARGET = $(MODULE).lint 68INSTALL_TARGET = $(BINARY) $(ROOTMODULE) 69 70.KEEP_STATE: 71 72all: $(ALL_DEPS) 73 74def: $(DEF_DEPS) 75 76clean: $(CLEAN_DEPS) 77 $(RM) $(WARLOCK_OUT) $(WARLOCK_OK) 78 79clobber: $(CLOBBER_DEPS) 80 $(RM) $(WARLOCK_OUT) $(WARLOCK_OK) 81 82lint: $(LINT_DEPS) 83 84modlintlib: $(MODLINTLIB_DEPS) 85 86clean.lint: $(CLEAN_LINT_DEPS) 87 88install: $(INSTALL_DEPS) 89 90# 91# Include common targets. 92# 93include $(UTSBASE)/sparc/Makefile.targ 94 95# 96# Defines for local commands. 97# 98WARLOCK = warlock 99WLCC = wlcc 100TOUCH = touch 101TEST = test 102 103# 104# lock_lint rules 105# 106USBA_FILES = $(USBA_WITHOUT_WUSB_OBJS:%.o=../usba/%.ll) 107UHCI_FILES = $(UHCI_OBJS:%.o=../uhci/%.ll) 108OHCI_FILES = $(OHCI_OBJS:%.o=../ohci/%.ll) 109EHCI_FILES = $(EHCI_OBJS:%.o=../ehci/%.ll) 110 111warlock: $(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 122warlock_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 130usba_files: 131 @cd ../usba;pwd; $(MAKE) warlock 132 133uhci_files: 134 @cd ../uhci;pwd; $(MAKE) warlock 135 136ohci_files: 137 @cd ../ohci;pwd; $(MAKE) warlock 138 139ehci_files: 140 @cd ../ehci;pwd; $(MAKE) warlock 141 142warlock_ddi.files: 143 cd ../warlock; pwd; $(MAKE) warlock 144