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