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