Makefile revision 843e19887f64dde75055cf8842fc4db2171eff45
3853N/A#
3853N/A# CDDL HEADER START
3853N/A#
3853N/A# The contents of this file are subject to the terms of the
3853N/A# Common Development and Distribution License (the "License").
3853N/A# You may not use this file except in compliance with the License.
3853N/A#
3853N/A# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
3853N/A# or http://www.opensolaris.org/os/licensing.
3853N/A# See the License for the specific language governing permissions
3853N/A# and limitations under the License.
3853N/A#
3853N/A# When distributing Covered Code, include this CDDL HEADER in each
3853N/A# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
3853N/A# If applicable, add the following below this CDDL HEADER, with the
3853N/A# fields enclosed by brackets "[]" replaced with your own identifying
3853N/A# information: Portions Copyright [yyyy] [name of copyright owner]
3853N/A#
3853N/A# CDDL HEADER END
3853N/A#
3853N/A
3853N/A#
3853N/A# Copyright 2007 Sun Microsystems, Inc. All rights reserved.
3853N/A# Use is subject to license terms.
4107N/A#
3853N/A# ident "%Z%%M% %I% %E% SMI"
3853N/A#
3853N/A# This makefile drives the production of xpvtod kernel module.
3853N/A#
3853N/A# i86xpv implementation architecture dependent
3853N/A#
3853N/A
3853N/A#
4107N/A# Path to the base of the uts directory tree (usually /usr/src/uts).
4107N/A#
3853N/AUTSBASE = ../..
3853N/A
3940N/A#
3853N/A# Define the module and object file sets.
3853N/A#
3853N/AMODULE = xpvtod
3853N/AOBJECTS = $(XPVTOD_OBJS:%=$(OBJS_DIR)/%)
3853N/ALINTS = $(XPVTOD_OBJS:%.o=$(LINTS_DIR)/%.ln)
3853N/AROOTMODULE = $(ROOT_PSM_TOD_DIR)/$(MODULE)
3853N/A
3853N/A#
3940N/A# Include common rules.
3853N/A#
3853N/Ainclude $(UTSBASE)/i86xpv/Makefile.i86xpv
3853N/A
3853N/A#
3853N/A# Define targets
3853N/A#
3853N/AALL_TARGET = $(BINARY)
3853N/ALINT_TARGET = $(MODULE).lint
3853N/AINSTALL_TARGET = $(BINARY) $(ROOTMODULE)
3853N/A
3853N/ALINTTAGS += -erroff=E_ASSIGN_NARROW_CONV
3853N/A
3853N/A#
3853N/A# Default build targets.
3853N/A#
3853N/A.KEEP_STATE:
3853N/A
3853N/Adef: $(DEF_DEPS)
3853N/A
3853N/Aall: $(ALL_DEPS)
3853N/A
3853N/Aclean: $(CLEAN_DEPS)
3853N/A
3853N/Aclobber: $(CLOBBER_DEPS)
3853N/A
3853N/Alint: $(LINT_DEPS)
3853N/A
3853N/Amodlintlib: $(MODLINTLIB_DEPS)
3853N/A
3853N/Aclean.lint: $(CLEAN_LINT_DEPS)
3853N/A
3853N/Ainstall: $(INSTALL_DEPS)
3853N/A
3853N/A#
3853N/A# Include common targets.
3853N/A#
3853N/Ainclude $(UTSBASE)/i86xpv/Makefile.targ
3853N/A