Makefile revision 7014882c6a3672fd0e5d60200af8643ae53c5928
f6929ecef713a1395a17d75418eb6d6f8f2c68fdGarrett D'Amore#
f6929ecef713a1395a17d75418eb6d6f8f2c68fdGarrett D'Amore# CDDL HEADER START
f6929ecef713a1395a17d75418eb6d6f8f2c68fdGarrett D'Amore#
f6929ecef713a1395a17d75418eb6d6f8f2c68fdGarrett D'Amore# The contents of this file are subject to the terms of the
f6929ecef713a1395a17d75418eb6d6f8f2c68fdGarrett D'Amore# Common Development and Distribution License (the "License").
f6929ecef713a1395a17d75418eb6d6f8f2c68fdGarrett D'Amore# You may not use this file except in compliance with the License.
f6929ecef713a1395a17d75418eb6d6f8f2c68fdGarrett D'Amore#
f6929ecef713a1395a17d75418eb6d6f8f2c68fdGarrett D'Amore# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
f6929ecef713a1395a17d75418eb6d6f8f2c68fdGarrett D'Amore# or http://www.opensolaris.org/os/licensing.
f6929ecef713a1395a17d75418eb6d6f8f2c68fdGarrett D'Amore# See the License for the specific language governing permissions
f6929ecef713a1395a17d75418eb6d6f8f2c68fdGarrett D'Amore# and limitations under the License.
f6929ecef713a1395a17d75418eb6d6f8f2c68fdGarrett D'Amore#
f6929ecef713a1395a17d75418eb6d6f8f2c68fdGarrett D'Amore# When distributing Covered Code, include this CDDL HEADER in each
f6929ecef713a1395a17d75418eb6d6f8f2c68fdGarrett D'Amore# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
f6929ecef713a1395a17d75418eb6d6f8f2c68fdGarrett D'Amore# If applicable, add the following below this CDDL HEADER, with the
f6929ecef713a1395a17d75418eb6d6f8f2c68fdGarrett D'Amore# fields enclosed by brackets "[]" replaced with your own identifying
f6929ecef713a1395a17d75418eb6d6f8f2c68fdGarrett D'Amore# information: Portions Copyright [yyyy] [name of copyright owner]
f6929ecef713a1395a17d75418eb6d6f8f2c68fdGarrett D'Amore#
f6929ecef713a1395a17d75418eb6d6f8f2c68fdGarrett D'Amore# CDDL HEADER END
f6929ecef713a1395a17d75418eb6d6f8f2c68fdGarrett D'Amore#
f6929ecef713a1395a17d75418eb6d6f8f2c68fdGarrett D'Amore#
f6929ecef713a1395a17d75418eb6d6f8f2c68fdGarrett D'Amore# uts/intel/audiocmihd/Makefile
f6929ecef713a1395a17d75418eb6d6f8f2c68fdGarrett D'Amore#
f6929ecef713a1395a17d75418eb6d6f8f2c68fdGarrett D'Amore# Copyright 2009 Sun Microsystems, Inc. All rights reserved.
f6929ecef713a1395a17d75418eb6d6f8f2c68fdGarrett D'Amore# Use is subject to license terms.
f6929ecef713a1395a17d75418eb6d6f8f2c68fdGarrett D'Amore#
f6929ecef713a1395a17d75418eb6d6f8f2c68fdGarrett D'Amore# Copyright 2011 Nexenta Systems, Inc. All rights reserved.
f6929ecef713a1395a17d75418eb6d6f8f2c68fdGarrett D'Amore#
f6929ecef713a1395a17d75418eb6d6f8f2c68fdGarrett D'Amore# This makefile drives the production of the audiocmihd driver.
f6929ecef713a1395a17d75418eb6d6f8f2c68fdGarrett D'Amore#
f6929ecef713a1395a17d75418eb6d6f8f2c68fdGarrett D'Amore
f6929ecef713a1395a17d75418eb6d6f8f2c68fdGarrett D'Amore#
f6929ecef713a1395a17d75418eb6d6f8f2c68fdGarrett D'Amore# Path to the base of the uts directory tree (usually /usr/src/uts).
f6929ecef713a1395a17d75418eb6d6f8f2c68fdGarrett D'Amore#
f6929ecef713a1395a17d75418eb6d6f8f2c68fdGarrett D'AmoreUTSBASE = ../..
f6929ecef713a1395a17d75418eb6d6f8f2c68fdGarrett D'Amore
f6929ecef713a1395a17d75418eb6d6f8f2c68fdGarrett D'Amore#
f6929ecef713a1395a17d75418eb6d6f8f2c68fdGarrett D'Amore# Define the module and object file sets.
f6929ecef713a1395a17d75418eb6d6f8f2c68fdGarrett D'Amore#
f6929ecef713a1395a17d75418eb6d6f8f2c68fdGarrett D'AmoreMODULE = audiocmihd
f6929ecef713a1395a17d75418eb6d6f8f2c68fdGarrett D'AmoreOBJECTS = $(AUDIOCMIHD_OBJS:%=$(OBJS_DIR)/%)
f6929ecef713a1395a17d75418eb6d6f8f2c68fdGarrett D'AmoreLINTS = $(AUDIOCMIHD_OBJS:%.o=$(LINTS_DIR)/%.ln)
f6929ecef713a1395a17d75418eb6d6f8f2c68fdGarrett D'AmoreROOTMODULE = $(ROOT_DRV_DIR)/$(MODULE)
f6929ecef713a1395a17d75418eb6d6f8f2c68fdGarrett D'Amore
f6929ecef713a1395a17d75418eb6d6f8f2c68fdGarrett D'Amore#
f6929ecef713a1395a17d75418eb6d6f8f2c68fdGarrett D'Amore# Include common rules.
f6929ecef713a1395a17d75418eb6d6f8f2c68fdGarrett D'Amore#
f6929ecef713a1395a17d75418eb6d6f8f2c68fdGarrett D'Amoreinclude $(UTSBASE)/intel/Makefile.intel
f6929ecef713a1395a17d75418eb6d6f8f2c68fdGarrett D'Amore
f6929ecef713a1395a17d75418eb6d6f8f2c68fdGarrett D'Amore#
f6929ecef713a1395a17d75418eb6d6f8f2c68fdGarrett D'Amore# Define targets
f6929ecef713a1395a17d75418eb6d6f8f2c68fdGarrett D'Amore#
f6929ecef713a1395a17d75418eb6d6f8f2c68fdGarrett D'AmoreALL_TARGET = $(BINARY)
f6929ecef713a1395a17d75418eb6d6f8f2c68fdGarrett D'AmoreLINT_TARGET = $(MODULE).lint
f6929ecef713a1395a17d75418eb6d6f8f2c68fdGarrett D'AmoreINSTALL_TARGET = $(BINARY) $(ROOTMODULE)
f6929ecef713a1395a17d75418eb6d6f8f2c68fdGarrett D'Amore
f6929ecef713a1395a17d75418eb6d6f8f2c68fdGarrett D'AmoreLDFLAGS += -dy -Ndrv/audio -Nmisc/ac97
f6929ecef713a1395a17d75418eb6d6f8f2c68fdGarrett D'Amore
7014882c6a3672fd0e5d60200af8643ae53c5928Richard LoweCERRWARN += -_gcc=-Wno-switch
7014882c6a3672fd0e5d60200af8643ae53c5928Richard LoweCERRWARN += -_gcc=-Wno-uninitialized
7014882c6a3672fd0e5d60200af8643ae53c5928Richard Lowe
f6929ecef713a1395a17d75418eb6d6f8f2c68fdGarrett D'Amore#
f6929ecef713a1395a17d75418eb6d6f8f2c68fdGarrett D'Amore# Default build targets.
f6929ecef713a1395a17d75418eb6d6f8f2c68fdGarrett D'Amore#
f6929ecef713a1395a17d75418eb6d6f8f2c68fdGarrett D'Amore.KEEP_STATE:
f6929ecef713a1395a17d75418eb6d6f8f2c68fdGarrett D'Amore
f6929ecef713a1395a17d75418eb6d6f8f2c68fdGarrett D'Amoredef: $(DEF_DEPS)
f6929ecef713a1395a17d75418eb6d6f8f2c68fdGarrett D'Amore
f6929ecef713a1395a17d75418eb6d6f8f2c68fdGarrett D'Amoreall: $(ALL_DEPS)
f6929ecef713a1395a17d75418eb6d6f8f2c68fdGarrett D'Amore
f6929ecef713a1395a17d75418eb6d6f8f2c68fdGarrett D'Amoreclean: $(CLEAN_DEPS)
f6929ecef713a1395a17d75418eb6d6f8f2c68fdGarrett D'Amore
f6929ecef713a1395a17d75418eb6d6f8f2c68fdGarrett D'Amoreclobber: $(CLOBBER_DEPS)
f6929ecef713a1395a17d75418eb6d6f8f2c68fdGarrett D'Amore
f6929ecef713a1395a17d75418eb6d6f8f2c68fdGarrett D'Amorelint: $(LINT_DEPS)
f6929ecef713a1395a17d75418eb6d6f8f2c68fdGarrett D'Amore
f6929ecef713a1395a17d75418eb6d6f8f2c68fdGarrett D'Amoremodlintlib: $(MODLINTLIB_DEPS)
f6929ecef713a1395a17d75418eb6d6f8f2c68fdGarrett D'Amore
f6929ecef713a1395a17d75418eb6d6f8f2c68fdGarrett D'Amoreclean.lint: $(CLEAN_LINT_DEPS)
f6929ecef713a1395a17d75418eb6d6f8f2c68fdGarrett D'Amore
f6929ecef713a1395a17d75418eb6d6f8f2c68fdGarrett D'Amoreinstall: $(INSTALL_DEPS)
f6929ecef713a1395a17d75418eb6d6f8f2c68fdGarrett D'Amore
f6929ecef713a1395a17d75418eb6d6f8f2c68fdGarrett D'Amore#
f6929ecef713a1395a17d75418eb6d6f8f2c68fdGarrett D'Amore# Include common targets.
f6929ecef713a1395a17d75418eb6d6f8f2c68fdGarrett D'Amore#
f6929ecef713a1395a17d75418eb6d6f8f2c68fdGarrett D'Amoreinclude $(UTSBASE)/intel/Makefile.targ