148N/A#
148N/A# CDDL HEADER START
148N/A#
148N/A# The contents of this file are subject to the terms of the
148N/A# Common Development and Distribution License (the "License").
148N/A# You may not use this file except in compliance with the License.
148N/A#
148N/A# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
148N/A# or http://www.opensolaris.org/os/licensing.
148N/A# See the License for the specific language governing permissions
148N/A# and limitations under the License.
148N/A#
148N/A# When distributing Covered Code, include this CDDL HEADER in each
148N/A# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
148N/A# If applicable, add the following below this CDDL HEADER, with the
148N/A# fields enclosed by brackets "[]" replaced with your own identifying
148N/A# information: Portions Copyright [yyyy] [name of copyright owner]
148N/A#
148N/A# CDDL HEADER END
148N/A#
148N/A#
148N/A# uts/intel/audio/Makefile
3817N/A#
148N/A# Copyright 2009 Sun Microsystems, Inc. All rights reserved.
148N/A# Use is subject to license terms.
148N/A#
148N/A# This makefile drives the production of the audio support module.
148N/A#
1552N/A
618N/A#
148N/A# Path to the base of the uts directory tree (usually /usr/src/uts).
148N/A#
844N/AUTSBASE = ../..
1552N/A
148N/A#
1258N/A# Define the module and object file sets.
148N/A#
2899N/AMODULE = audio
2899N/AOBJECTS = $(AUDIO_OBJS:%=$(OBJS_DIR)/%)
3817N/ALINTS = $(AUDIO_OBJS:%.o=$(LINTS_DIR)/%.ln)
3817N/AROOTMODULE = $(ROOT_DRV_DIR)/$(MODULE)
3817N/ACONF_SRCDIR = $(UTSBASE)/common/io/audio/impl
3817N/A
148N/A#
3495N/A# Include common rules.
3495N/A#
181N/Ainclude $(UTSBASE)/intel/Makefile.intel
148N/A
148N/ACERRWARN += -_gcc=-Wno-uninitialized
148N/A
148N/A#
148N/A# Define targets
148N/A#
148N/AALL_TARGET = $(BINARY) $(SRC_CONFFILE)
148N/ALINT_TARGET = $(MODULE).lint
1200N/AINSTALL_TARGET = $(BINARY) $(ROOTMODULE) $(ROOT_CONFFILE)
1200N/A
148N/A#
148N/A# Default build targets.
148N/A#
148N/A.KEEP_STATE:
148N/A
148N/Adef: $(DEF_DEPS)
4086N/A
4086N/Aall: $(ALL_DEPS)
4086N/A
4086N/Aclean: $(CLEAN_DEPS)
4086N/A
148N/Aclobber: $(CLOBBER_DEPS)
148N/A
3477N/Alint: $(LINT_DEPS)
3477N/A
148N/Amodlintlib: $(MODLINTLIB_DEPS)
148N/A
148N/Aclean.lint: $(CLEAN_LINT_DEPS)
727N/A
148N/Ainstall: $(INSTALL_DEPS)
181N/A
148N/A#
4337N/A# Include common targets.
4337N/A#
148N/Ainclude $(UTSBASE)/intel/Makefile.targ
5081N/A