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# 23# Copyright 2007 Sun Microsystems, Inc. All rights reserved. 24# Use is subject to license terms. 25# 26#ident "%Z%%M% %I% %E% SMI" 27 28# 29# uts/sparc/usbvc/Makefile 30# This makefile drives the production of the usbvc kernel driver. 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 = usbvc 44OBJECTS = $(USBVC_OBJS:%=$(OBJS_DIR)/%) 45LINTS = $(USBVC_OBJS:%.o=$(LINTS_DIR)/%.ln) 46ROOTMODULE = $(ROOT_DRV_DIR)/$(MODULE) 47WARLOCK_OUT = $(USBVC_OBJS:%.o=%.ll) 48WARLOCK_OK = $(MODULE).ok 49WLCMD_DIR = $(UTSBASE)/common/io/warlock 50 51# 52# Include common rules. 53# 54include $(UTSBASE)/sparc/Makefile.sparc 55 56# 57# lint pass one enforcement 58# 59CFLAGS += $(CCVERBOSE) 60 61# 62# depends on misc/usba 63LDFLAGS += -dy -Nmisc/usba 64 65# 66# Define targets 67# 68ALL_TARGET = $(BINARY) 69LINT_TARGET = $(MODULE).lint 70INSTALL_TARGET = $(BINARY) $(ROOTMODULE) 71 72# 73# Disable this because it is necessary for this driver 74# and it is surely safe 75# 76LINTTAGS += -erroff=E_BAD_PTR_CAST_ALIGN 77 78.KEEP_STATE: 79 80all: $(ALL_DEPS) 81 82def: $(DEF_DEPS) 83 84clean: $(CLEAN_DEPS) 85 $(RM) $(WARLOCK_OUT) $(WARLOCK_OK) 86 87clobber: $(CLOBBER_DEPS) 88 $(RM) $(WARLOCK_OUT) $(WARLOCK_OK) 89 90lint: $(LINT_DEPS) 91 92modlintlib: $(MODLINTLIB_DEPS) 93 94clean.lint: $(CLEAN_LINT_DEPS) 95 96install: $(INSTALL_DEPS) 97 98# 99# Include common targets. 100# 101include $(UTSBASE)/sparc/Makefile.targ 102 103# 104# Defines for local commands. 105# 106WARLOCK = warlock 107WLCC = wlcc 108TOUCH = touch 109TEST = test 110 111# 112# lock_lint rules 113# 114USBA_FILES = $(USBA_OBJS:%.o=../usba/%.ll) 115UHCI_FILES = $(UHCI_OBJS:%.o=../uhci/%.ll) 116OHCI_FILES = $(OHCI_OBJS:%.o=../ohci/%.ll) 117EHCI_FILES = $(EHCI_OBJS:%.o=../ehci/%.ll) 118 119warlock: $(WARLOCK_OK) warlock_with_usba 120 121$(WARLOCK_OK): $(WARLOCK_OUT) $(WLCMD_DIR)/usbvc.wlcmd warlock_ddi.files 122 $(WARLOCK) -c $(WLCMD_DIR)/usbvc.wlcmd $(WARLOCK_OUT) \ 123 -l ../warlock/ddi_dki_impl.ll 124 $(TOUCH) $@ 125 126%.ll: $(UTSBASE)/common/io/usb/clients/video/usbvc/%.c \ 127 $(UTSBASE)/common/sys/usb/clients/video/usbvc/usbvc_var.h 128 $(WLCC) $(CPPFLAGS) -DDEBUG -o $@ $< 129 130warlock_with_usba: $(WLCMD_DIR)/usbvc_with_usba.wlcmd $(WARLOCK_OUT) \ 131 usba_files ohci_files ehci_files uhci_files warlock_ddi.files 132 $(WARLOCK) -c $(WLCMD_DIR)/usbvc_with_usba.wlcmd \ 133 $(USBA_FILES) $(OHCI_FILES) $(EHCI_FILES) $(UHCI_FILES) \ 134 $(WARLOCK_OUT) \ 135 -l ../warlock/ddi_dki_impl.ll 136 137usba_files: 138 @cd ../usba;pwd; $(MAKE) warlock 139 140uhci_files: 141 @cd ../uhci;pwd; $(MAKE) warlock 142 143ohci_files: 144 @cd ../ohci;pwd; $(MAKE) warlock 145 146ehci_files: 147 @cd ../ehci;pwd; $(MAKE) warlock 148 149warlock_ddi.files: 150 cd ../warlock; pwd; $(MAKE) warlock 151