Makefile revision 90f050286227cf4c4f8aa425555d04723d331d48
321N/A#
321N/A# CDDL HEADER START
1276N/A#
321N/A# The contents of this file are subject to the terms of the
1276N/A# Common Development and Distribution License (the "License").
321N/A# You may not use this file except in compliance with the License.
321N/A#
919N/A# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
919N/A# or http://www.opensolaris.org/os/licensing.
919N/A# See the License for the specific language governing permissions
919N/A# and limitations under the License.
919N/A#
919N/A# When distributing Covered Code, include this CDDL HEADER in each
919N/A# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
919N/A# If applicable, add the following below this CDDL HEADER, with the
919N/A# fields enclosed by brackets "[]" replaced with your own identifying
919N/A# information: Portions Copyright [yyyy] [name of copyright owner]
919N/A#
919N/A# CDDL HEADER END
919N/A#
919N/A#
919N/A# uts/sparc/usbsacm/Makefile
919N/A#
919N/A# Copyright 2006 Sun Microsystems, Inc. All rights reserved.
321N/A# Use is subject to license terms.
321N/A#
321N/A#ident "%Z%%M% %I% %E% SMI"
321N/A#
493N/A# This makefile drives the production of Abstract Control Model of
321N/A# USB Communication Devices Class dirver.
970N/A#
970N/A# Path to the base of the uts directory tree (usually /usr/src/uts).
970N/A#
970N/AUTSBASE = ../..
970N/A
970N/A#
970N/A# Define the module and object file sets.
970N/A#
321N/AMODULE = usbsacm
1276N/AOBJECTS = $(USBSACM_OBJS:%=$(OBJS_DIR)/%)
321N/ALINTS = $(USBSACM_OBJS:%.o=$(LINTS_DIR)/%.ln)
911N/AROOTMODULE = $(ROOT_DRV_DIR)/$(MODULE)
1276N/AWARLOCK_OUT = $(USBSACM_OBJS:%.o=%.ll)
1276N/AWARLOCK_OK = $(MODULE).ok
1276N/AWLCMD_DIR = $(UTSBASE)/common/io/warlock
911N/A
321N/A#
321N/A# Include common rules.
321N/A#
321N/Ainclude $(UTSBASE)/sparc/Makefile.sparc
1068N/A
493N/A#
321N/A# lint pass one enforcement
970N/A#
970N/ACFLAGS += $(CCVERBOSE)
970N/A
1196N/ALDFLAGS += -dy -Nmisc/usba -Nmisc/usbser
1196N/A
1196N/A#
1196N/A# Define targets
1196N/A#
321N/AALL_TARGET = $(BINARY)
LINT_TARGET = $(MODULE).lint
INSTALL_TARGET = $(BINARY) $(ROOTMODULE)
#
# For now, disable these lint checks; maintainers should endeavor
# to investigate and remove these for maximum lint coverage.
# Please do not carry these forward to new Makefiles.
#
LINTTAGS += -erroff=E_PTRDIFF_OVERFLOW
LINTTAGS += -erroff=E_BAD_PTR_CAST_ALIGN
.KEEP_STATE:
all: $(ALL_DEPS)
def: $(DEF_DEPS)
clean: $(CLEAN_DEPS)
$(RM) $(WARLOCK_OUT) $(WARLOCK_OK)
clobber: $(CLOBBER_DEPS)
$(RM) $(WARLOCK_OUT) $(WARLOCK_OK)
lint: $(LINT_DEPS)
modlintlib: $(MODLINTLIB_DEPS)
clean.lint: $(CLEAN_LINT_DEPS)
install: $(INSTALL_DEPS)
#
# Include common targets.
#
include $(UTSBASE)/sparc/Makefile.targ
#
# Defines for local commands.
#
WLCC = wlcc
TOUCH = touch
WARLOCK = warlock
SCCS = sccs
TEST = test
#
# warlock
#
WARLOCK_CMD = $(MODULE).wlcmd
USBSER_FILES = $(USBSER_OBJS:%.o=../usbser/%.ll)
USBA_FILES = $(USBA_OBJS:%.o=../usba/%.ll)
UHCI_FILES = $(UHCI_OBJS:%.o=../uhci/%.ll)
OHCI_FILES = $(OHCI_OBJS:%.o=../ohci/%.ll)
EHCI_FILES = $(EHCI_OBJS:%.o=../ehci/%.ll)
warlock: $(WARLOCK_OK)
%.wlcmd:
cd $(WLCMD_DIR); $(TEST) -f $@ || $(SCCS) get $@
$(WARLOCK_OK): warlock_with_usbser warlock_with_usba
$(TOUCH) $@
%.ll: $(UTSBASE)/common/io/usb/clients/usbser/usbsacm/%.c
$(WLCC) $(CPPFLAGS) -DDEBUG -o $@ $<
warlock_with_usbser: $(WARLOCK_OUT) usbser_files warlock_ddi.files \
$(WARLOCK_CMD)
$(WARLOCK) -c $(WLCMD_DIR)/$(WARLOCK_CMD) $(WARLOCK_OUT) \
$(USBSER_FILES) -l ../warlock/ddi_dki_impl.ll
warlock_with_usba: usbsacm_with_usba.wlcmd $(WARLOCK_OUT) usbser_files \
usba_files ohci_files uhci_files ehci_files warlock_ddi.files
$(WARLOCK) -c $(WLCMD_DIR)/usbsacm_with_usba.wlcmd \
$(USBA_FILES) $(OHCI_FILES) $(EHCI_FILES) $(UHCI_FILES) \
$(USBSER_FILES) \
$(WARLOCK_OUT) -l ../warlock/ddi_dki_impl.ll
usbser_files:
@cd ../usbser; pwd; $(MAKE) warlock
usba_files:
@cd ../usba;pwd; $(MAKE) warlock
uhci_files:
@cd ../uhci;pwd; $(MAKE) warlock
ohci_files:
@cd ../ohci;pwd; $(MAKE) warlock
ehci_files:
@cd ../ehci;pwd; $(MAKE) warlock
warlock_ddi.files:
cd ../warlock; pwd; $(MAKE) warlock