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