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