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/intel/usbsacm/Makefile 23# Copyright 2006 Sun Microsystems, Inc. All rights reserved. 24# Use is subject to license terms. 25# 26#ident "%Z%%M% %I% %E% SMI" 27# 28# This makefile drives the production of Abstract Control Model of 29# USB Communication Devices Class dirver. 30# 31# Path to the base of the uts directory tree (usually /usr/src/uts). 32# 33UTSBASE = ../.. 34 35# 36# Define the module and object file sets. 37# 38MODULE = usbsacm 39OBJECTS = $(USBSACM_OBJS:%=$(OBJS_DIR)/%) 40LINTS = $(USBSACM_OBJS:%.o=$(LINTS_DIR)/%.ln) 41ROOTMODULE = $(ROOT_DRV_DIR)/$(MODULE) 42WARLOCK_OUT = $(USBSACM_OBJS:%.o=%.ll) 43WARLOCK_OK = $(MODULE).ok 44WLCMD_DIR = $(UTSBASE)/common/io/warlock 45 46# 47# Include common rules. 48# 49include $(UTSBASE)/intel/Makefile.intel 50 51LDFLAGS += -dy -Nmisc/usba -Nmisc/usbser 52 53# 54# Define targets 55# 56ALL_TARGET = $(BINARY) 57LINT_TARGET = $(MODULE).lint 58INSTALL_TARGET = $(BINARY) $(ROOTMODULE) 59 60# 61# For now, disable these lint checks; maintainers should endeavor 62# to investigate and remove these for maximum lint coverage. 63# Please do not carry these forward to new Makefiles. 64# 65LINTTAGS += -erroff=E_PTRDIFF_OVERFLOW 66LINTTAGS += -erroff=E_BAD_PTR_CAST_ALIGN 67 68.KEEP_STATE: 69 70all: $(ALL_DEPS) 71 72def: $(DEF_DEPS) 73 74clean: $(CLEAN_DEPS) 75 $(RM) $(WARLOCK_OUT) $(WARLOCK_OK) 76 77clobber: $(CLOBBER_DEPS) 78 $(RM) $(WARLOCK_OUT) $(WARLOCK_OK) 79 80lint: $(LINT_DEPS) 81 82modlintlib: $(MODLINTLIB_DEPS) 83 84clean.lint: $(CLEAN_LINT_DEPS) 85 86install: $(INSTALL_DEPS) 87 88# 89# Include common targets. 90# 91include $(UTSBASE)/intel/Makefile.targ 92 93# 94# Defines for local commands. 95# 96WLCC = wlcc 97TOUCH = touch 98WARLOCK = warlock 99SCCS = sccs 100TEST = test 101 102# 103# warlock 104# 105WARLOCK_CMD = $(MODULE).wlcmd 106 107USBSER_FILES = $(USBSER_OBJS:%.o=../usbser/%.ll) 108USBA_FILES = $(USBA_OBJS:%.o=../usba/%.ll) 109UHCI_FILES = $(UHCI_OBJS:%.o=../uhci/%.ll) 110OHCI_FILES = $(OHCI_OBJS:%.o=../ohci/%.ll) 111EHCI_FILES = $(EHCI_OBJS:%.o=../ehci/%.ll) 112 113warlock: $(WARLOCK_OK) 114 115%.wlcmd: 116 cd $(WLCMD_DIR); $(TEST) -f $@ || $(SCCS) get $@ 117 118$(WARLOCK_OK): warlock_with_usbser warlock_with_usba 119 $(TOUCH) $@ 120 121%.ll: $(UTSBASE)/common/io/usb/clients/usbser/usbsacm/%.c 122 $(WLCC) $(CPPFLAGS) -DDEBUG -o $@ $< 123 124warlock_with_usbser: $(WARLOCK_OUT) usbser_files warlock_ddi.files \ 125 $(WARLOCK_CMD) 126 $(WARLOCK) -c $(WLCMD_DIR)/$(WARLOCK_CMD) $(WARLOCK_OUT) \ 127 $(USBSER_FILES) -l ../warlock/ddi_dki_impl.ll 128 129warlock_with_usba: usbsacm_with_usba.wlcmd $(WARLOCK_OUT) usbser_files \ 130 usba_files ohci_files uhci_files ehci_files warlock_ddi.files 131 $(WARLOCK) -c $(WLCMD_DIR)/usbsacm_with_usba.wlcmd \ 132 $(USBA_FILES) $(OHCI_FILES) $(EHCI_FILES) $(UHCI_FILES) \ 133 $(USBSER_FILES) \ 134 $(WARLOCK_OUT) -l ../warlock/ddi_dki_impl.ll 135 136usbser_files: 137 @cd ../usbser; pwd; $(MAKE) warlock 138 139usba_files: 140 @cd ../usba;pwd; $(MAKE) warlock 141 142uhci_files: 143 @cd ../uhci;pwd; $(MAKE) warlock 144 145ohci_files: 146 @cd ../ohci;pwd; $(MAKE) warlock 147 148ehci_files: 149 @cd ../ehci;pwd; $(MAKE) warlock 150 151warlock_ddi.files: 152 cd ../warlock; pwd; $(MAKE) warlock 153