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