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