Makefile revision bb25c06cca41ca78e5fb87fbb8e81d55beb18c95
250N/A#
250N/A# CDDL HEADER START
250N/A#
250N/A# The contents of this file are subject to the terms of the
250N/A# Common Development and Distribution License (the "License").
250N/A# You may not use this file except in compliance with the License.
250N/A#
250N/A# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
250N/A# or http://www.opensolaris.org/os/licensing.
250N/A# See the License for the specific language governing permissions
250N/A# and limitations under the License.
250N/A#
250N/A# When distributing Covered Code, include this CDDL HEADER in each
250N/A# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
250N/A# If applicable, add the following below this CDDL HEADER, with the
250N/A# fields enclosed by brackets "[]" replaced with your own identifying
250N/A# information: Portions Copyright [yyyy] [name of copyright owner]
250N/A#
250N/A# CDDL HEADER END
250N/A#
250N/A#
250N/A# uts/intel/audiosup/Makefile
250N/A#
250N/A# Copyright 2006 Sun Microsystems, Inc. All rights reserved.
250N/A# Use is subject to license terms.
250N/A#
250N/A# This makefile drives the production of the audio support (audiosup)
250N/A# module.
250N/A#
250N/A#ident "%Z%%M% %I% %E% SMI"
250N/A
250N/A#
250N/A# Path to the base of the uts directory tree (usually /usr/src/uts).
250N/A#
250N/AUTSBASE = ../..
250N/A
250N/A#
250N/A# Define the module and object file sets.
250N/A#
250N/AMODULE = audiosup
250N/AOBJECTS = $(AUDIO_SUP_OBJS:%=$(OBJS_DIR)/%)
250N/ALINTS = $(AUDIO_SUP_OBJS:%.o=$(LINTS_DIR)/%.ln)
250N/AROOTMODULE = $(ROOT_MISC_DIR)/$(MODULE)
250N/A
250N/A#
250N/A# Include common rules.
250N/A#
250N/Ainclude $(UTSBASE)/intel/Makefile.intel
250N/A
250N/A#
250N/A# Define targets
250N/A#
250N/AALL_TARGET = $(BINARY)
250N/ALINT_TARGET = $(MODULE).lint
250N/AINSTALL_TARGET = $(BINARY) $(ROOTMODULE)
250N/A
250N/A#
250N/A# For now, disable these lint checks; maintainers should endeavor
250N/A# to investigate and remove these for maximum lint coverage.
250N/A# Please do not carry these forward to new Makefiles.
250N/A#
250N/ALINTTAGS += -erroff=E_BAD_PTR_CAST_ALIGN
250N/ALINTTAGS += -erroff=E_PTRDIFF_OVERFLOW
250N/A
250N/A#
250N/A# Default build targets.
250N/A#
250N/A.KEEP_STATE:
250N/A
250N/Adef: $(DEF_DEPS)
250N/A
250N/Aall: $(ALL_DEPS)
250N/A
250N/Aclean: $(CLEAN_DEPS)
250N/A
250N/Aclobber: $(CLOBBER_DEPS)
250N/A
lint: $(LINT_DEPS)
modlintlib: $(MODLINTLIB_DEPS)
clean.lint: $(CLEAN_LINT_DEPS)
install: $(INSTALL_DEPS)
#
# Include common targets.
#
include $(UTSBASE)/intel/Makefile.targ