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