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