Makefile revision bf56214c0556fa6864189c826d39dbe156bb22a0
98N/A#
98N/A# CDDL HEADER START
606N/A#
98N/A# The contents of this file are subject to the terms of the
98N/A# Common Development and Distribution License (the "License").
98N/A# You may not use this file except in compliance with the License.
98N/A#
98N/A# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
98N/A# or http://www.opensolaris.org/os/licensing.
98N/A# See the License for the specific language governing permissions
98N/A# and limitations under the License.
98N/A#
98N/A# When distributing Covered Code, include this CDDL HEADER in each
98N/A# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
98N/A# If applicable, add the following below this CDDL HEADER, with the
98N/A# fields enclosed by brackets "[]" replaced with your own identifying
98N/A# information: Portions Copyright [yyyy] [name of copyright owner]
98N/A#
98N/A# CDDL HEADER END
98N/A#
98N/A#
98N/A# Copyright 2007 Sun Microsystems, Inc. All rights reserved.
98N/A# Use is subject to license terms.
98N/A#
98N/A# uts/sparc/usb_as/Makefile
98N/A#
98N/A# This makefile drives the production of the usb_audio driver
98N/A# kernel module. sparc architecture dependent
98N/A#
98N/A
606N/A#ident "%Z%%M% %I% %E% SMI"
98N/A
98N/A#
98N/A# Path to the base of the uts directory tree (usually /usr/src/uts).
156N/A#
98N/AUTSBASE = ../..
98N/A
98N/A#
98N/A# Define the module and object file sets.
98N/A#
156N/AMODULE = usb_as
98N/AOBJECTS = $(USB_AS_OBJS:%=$(OBJS_DIR)/%)
98N/ALINTS = $(USB_AS_OBJS:%.o=$(LINTS_DIR)/%.ln)
156N/AROOTMODULE = $(ROOT_DRV_DIR)/$(MODULE)
98N/AWARLOCK_OUT = $(USB_AS_OBJS:%.o=%.ll)
98N/AWARLOCK_OK = $(MODULE).ok
98N/AWLCMD_DIR = $(UTSBASE)/common/io/warlock
98N/A
98N/A#
98N/A# Include common rules.
98N/A#
98N/Ainclude $(UTSBASE)/sparc/Makefile.sparc
98N/A
98N/A#
98N/A# lint pass one enforcement
98N/A#
98N/ACFLAGS += $(CCVERBOSE)
98N/A
98N/A#
98N/A# do not remove depends on amsrc2. If removed, amsrc2 gets unloaded when
98N/A# usb_ac_dacf gets unloaded
98N/ALDFLAGS += -dy -Nmisc/usba -Nmisc/audiosup -Nmisc/mixer -Nmisc/amsrc2
159N/A
98N/A#
98N/A# Define targets
98N/A#
98N/AALL_TARGET = $(BINARY)
98N/ALINT_TARGET = $(MODULE).lint
98N/AINSTALL_TARGET = $(BINARY) $(ROOTMODULE)
98N/A
98N/A#
98N/A# For now, disable these lint checks; maintainers should endeavor
199N/A# to investigate and remove these for maximum lint coverage.
606N/A# Please do not carry these forward to new Makefiles.
98N/A#
98N/ALINTTAGS += -erroff=E_BAD_PTR_CAST_ALIGN
98N/ALINTTAGS += -erroff=E_PTRDIFF_OVERFLOW
606N/A
257N/A.KEEP_STATE:
98N/A
606N/Aall: $(ALL_DEPS)
98N/A
98N/Adef: $(DEF_DEPS)
98N/A
98N/Aclean: $(CLEAN_DEPS)
98N/A $(RM) $(WARLOCK_OUT) $(WARLOCK_OK)
98N/A
98N/Aclobber: $(CLOBBER_DEPS)
98N/A $(RM) $(WARLOCK_OUT) $(WARLOCK_OK)
98N/A
98N/Alint: $(LINT_DEPS)
606N/A
606N/Amodlintlib: $(MODLINTLIB_DEPS)
606N/A
606N/Aclean.lint: $(CLEAN_LINT_DEPS)
606N/A
606N/Ainstall: $(INSTALL_DEPS)
606N/A
98N/A#
606N/A# Include common targets.
98N/A#
493N/Ainclude $(UTSBASE)/sparc/Makefile.targ
493N/A
98N/A#
493N/A# Defines for local commands.
493N/A#
493N/AWARLOCK = warlock
WLCC = wlcc
TOUCH = touch
TEST = test
#
# lock_lint rules
#
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)
MIXER_FILES = $(MIXER_OBJS:%.o=$(UTSBASE)/sparc/mixer/%.ll)
AUDIO_SUP_FILES = $(AUDIO_SUP_OBJS:%.o=$(UTSBASE)/sparc/audiosup/%.ll)
AMSRC2_FILES = $(AMSRC2_OBJS:%.o=$(UTSBASE)/sparc/amsrc2/%.ll)
#
# Warlock targets
#
warlock: $(WARLOCK_OK)
$(WARLOCK_OK): $(WARLOCK_OUT) warlock_ddi.files \
warlock_audiosup.files warlock_mixer.files warlock_amsrc2.files \
warlock_standalone warlock_with_usba warlock_with_sada
$(TOUCH) $(WARLOCK_OK)
warlock_with_sada: $(WLCMD_DIR)/usb_as_with_sada.wlcmd \
$(WARLOCK_OUT) \
warlock_audiosup.files warlock_amsrc2.files warlock_mixer.files
$(WARLOCK) -c $(WLCMD_DIR)/usb_as_with_sada.wlcmd $(WARLOCK_OUT) \
$(MIXER_FILES) $(AUDIO_SUP_FILES) $(AMSRC2_FILES) \
-l ../warlock/ddi_dki_impl.ll
warlock_with_usba: $(WLCMD_DIR)/usb_as_with_usba.wlcmd $(WARLOCK_OUT) \
warlock_ddi.files warlock_ohci.files warlock_usba.files \
warlock_ehci.files warlock_uhci.files
$(WARLOCK) -c $(WLCMD_DIR)/usb_as_with_usba.wlcmd \
$(USBA_FILES) $(OHCI_FILES) $(EHCI_FILES) $(UHCI_FILES) \
$(WARLOCK_OUT) -l ../warlock/ddi_dki_impl.ll
warlock_standalone: $(WARLOCK_OUT) warlock_ddi.files $(WLCMD_DIR)/usb_as.wlcmd
$(WARLOCK) -c $(WLCMD_DIR)/usb_as.wlcmd $(WARLOCK_OUT) \
-l ../warlock/ddi_dki_impl.ll
%.ll: $(UTSBASE)/common/io/usb/clients/audio/usb_as/%.c
$(WLCC) $(CPPFLAGS) -DDEBUG -o $@ $<
warlock_usba.files:
@cd ../usba;pwd; $(MAKE) warlock
warlock_ohci.files:
@cd ../ohci;pwd; $(MAKE) warlock
warlock_uhci.files:
@cd ../uhci;pwd; $(MAKE) warlock
warlock_ehci.files:
@cd ../ehci;pwd; $(MAKE) warlock
warlock_ddi.files:
@cd ../warlock; pwd; $(MAKE) warlock
warlock_audiosup.files:
@cd ../audiosup; pwd; $(MAKE) warlock
warlock_amsrc2.files:
@cd ../amsrc2; pwd; $(MAKE) warlock
warlock_mixer.files:
@cd ../mixer; pwd; $(MAKE) warlock