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