Makefile revision 7c478bd95313f5f23a4c958a745db2134aa03244
2671b5d7a47e8eb0b547762380122c8b263ea282Tilo Mitra#
2671b5d7a47e8eb0b547762380122c8b263ea282Tilo Mitra# CDDL HEADER START
2671b5d7a47e8eb0b547762380122c8b263ea282Tilo Mitra#
2671b5d7a47e8eb0b547762380122c8b263ea282Tilo Mitra# The contents of this file are subject to the terms of the
2671b5d7a47e8eb0b547762380122c8b263ea282Tilo Mitra# Common Development and Distribution License, Version 1.0 only
2671b5d7a47e8eb0b547762380122c8b263ea282Tilo Mitra# (the "License"). You may not use this file except in compliance
2671b5d7a47e8eb0b547762380122c8b263ea282Tilo Mitra# with the License.
2671b5d7a47e8eb0b547762380122c8b263ea282Tilo Mitra#
2671b5d7a47e8eb0b547762380122c8b263ea282Tilo Mitra# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
2671b5d7a47e8eb0b547762380122c8b263ea282Tilo Mitra# or http://www.opensolaris.org/os/licensing.
2671b5d7a47e8eb0b547762380122c8b263ea282Tilo Mitra# See the License for the specific language governing permissions
2671b5d7a47e8eb0b547762380122c8b263ea282Tilo Mitra# and limitations under the License.
2671b5d7a47e8eb0b547762380122c8b263ea282Tilo Mitra#
d2854acf6eef44cf0aca645de3a37cca1388f51aDav Glass# When distributing Covered Code, include this CDDL HEADER in each
2671b5d7a47e8eb0b547762380122c8b263ea282Tilo Mitra# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
2671b5d7a47e8eb0b547762380122c8b263ea282Tilo Mitra# If applicable, add the following below this CDDL HEADER, with the
2671b5d7a47e8eb0b547762380122c8b263ea282Tilo Mitra# fields enclosed by brackets "[]" replaced with your own identifying
2671b5d7a47e8eb0b547762380122c8b263ea282Tilo Mitra# information: Portions Copyright [yyyy] [name of copyright owner]
307080b97c85833a163cb6dd85b45115e58b5767Tilo Mitra#
2671b5d7a47e8eb0b547762380122c8b263ea282Tilo Mitra# CDDL HEADER END
#
#
# Copyright 2004 Sun Microsystems, Inc. All rights reserved.
# Use is subject to license terms.
#
# uts/sparc/FSS/Makefile
#
#ident "%Z%%M% %I% %E% SMI"
#
# This makefile drives the production of the FSS scheduling class
# kernel module.
#
# sparc architecture dependent
#
#
# Path to the base of the uts directory tree (usually /usr/src/uts).
#
UTSBASE = ../..
#
# Define the module and object file sets.
#
MODULE = FSS
OBJECTS = $(FSS_OBJS:%=$(OBJS_DIR)/%)
LINTS = $(FSS_OBJS:%.o=$(LINTS_DIR)/%.ln)
ROOTMODULE = $(USR_SCHED_DIR)/$(MODULE)
#
# Include common rules.
#
include $(UTSBASE)/sparc/Makefile.sparc
#
# Define targets
#
ALL_TARGET = $(BINARY)
LINT_TARGET = $(MODULE).lint
INSTALL_TARGET = $(BINARY) $(ROOTMODULE)
#
# Overrides.
#
CFLAGS += $(CCVERBOSE)
#
# Default build targets.
#
.KEEP_STATE:
def: $(DEF_DEPS)
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)/sparc/Makefile.targ