Makefile revision 68c47f65208790c466e5e484f2293d3baed71c6a
6384N/A#
6384N/A# CDDL HEADER START
6384N/A#
6384N/A# The contents of this file are subject to the terms of the
6384N/A# Common Development and Distribution License (the "License").
6384N/A# You may not use this file except in compliance with the License.
6384N/A#
6384N/A# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
6384N/A# or http://www.opensolaris.org/os/licensing.
6384N/A# See the License for the specific language governing permissions
6384N/A# and limitations under the License.
6384N/A#
6384N/A# When distributing Covered Code, include this CDDL HEADER in each
6384N/A# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
6384N/A# If applicable, add the following below this CDDL HEADER, with the
6384N/A# fields enclosed by brackets "[]" replaced with your own identifying
6384N/A# information: Portions Copyright [yyyy] [name of copyright owner]
6384N/A#
6384N/A# CDDL HEADER END
6384N/A#
6384N/A#
6384N/A# Copyright 2010 Sun Microsystems, Inc. All rights reserved.
6384N/A# Use is subject to license terms.
6384N/A#
6384N/A# uts/intel/audioixp/Makefile
6384N/A#
6384N/A#
6384N/A# This makefile drives the production of high definition audio
6384N/A# driver (audioixp) kernel module.
6384N/A#
6384N/A#
6384N/A# Path to the base of the uts directory tree (usually /usr/src/uts).
6384N/A#
6384N/AUTSBASE = ../..
6384N/A
6384N/A#
6384N/A# Define the module and object file sets.
6384N/A#
6384N/AMODULE = audioixp
6384N/AOBJECTS = $(AUDIOIXP_OBJS:%=$(OBJS_DIR)/%)
6384N/ALINTS = $(AUDIOIXP_OBJS:%.o=$(LINTS_DIR)/%.ln)
6384N/AROOTMODULE = $(ROOT_DRV_DIR)/$(MODULE)
6384N/A
6384N/A#
6384N/A# Include common rules.
6384N/A#
6384N/Ainclude $(UTSBASE)/intel/Makefile.intel
6384N/A
6384N/A#
6384N/A# Overrides, lint pass one enforcement
6384N/A#
6384N/ACFLAGS += $(CCVERBOSE)
6384N/A
6384N/A#
6384N/A# Depends on misc/audiosup
6384N/A#
6384N/ALDFLAGS += -dy -Ndrv/audio -Nmisc/ac97
6384N/A
6384N/A#
6384N/A# Define targets
7151N/A#
7151N/AALL_TARGET = $(BINARY)
7151N/ALINT_TARGET = $(MODULE).lint
6384N/AINSTALL_TARGET = $(BINARY) $(ROOTMODULE)
6384N/A
6384N/A#
6384N/A# Default build targets.
6384N/A#
6384N/A.KEEP_STATE:
6384N/A
6384N/Adef: $(DEF_DEPS)
6384N/A
6384N/Aall: $(ALL_DEPS)
6384N/A
6384N/Aclean: $(CLEAN_DEPS)
6384N/A
6384N/Aclobber: $(CLOBBER_DEPS)
6384N/A
lint: $(LINT_DEPS)
modlintlib: $(MODLINTLIB_DEPS)
clean.lint: $(CLEAN_LINT_DEPS)
install: $(INSTALL_DEPS)
#
# Include common targets.
#
include $(UTSBASE)/intel/Makefile.targ