Makefile revision 89b43686db1fe9681d80a7cf5662730cb9378cae
369N/A#
369N/A# CDDL HEADER START
369N/A#
369N/A# The contents of this file are subject to the terms of the
369N/A# Common Development and Distribution License, Version 1.0 only
369N/A# (the "License"). You may not use this file except in compliance
369N/A# with the License.
369N/A#
369N/A# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
369N/A# or http://www.opensolaris.org/os/licensing.
369N/A# See the License for the specific language governing permissions
369N/A# and limitations under the License.
369N/A#
369N/A# When distributing Covered Code, include this CDDL HEADER in each
369N/A# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
369N/A# If applicable, add the following below this CDDL HEADER, with the
369N/A# fields enclosed by brackets "[]" replaced with your own identifying
369N/A# information: Portions Copyright [yyyy] [name of copyright owner]
369N/A#
369N/A# CDDL HEADER END
3477N/A#
369N/A#
369N/A# uts/intel/IA/Makefile
369N/A#
369N/A# Copyright 2004 Sun Microsystems, Inc. All rights reserved.
369N/A# Use is subject to license terms.
369N/A# Copyright (c) 2011 Bayard G. Bell. All rights reserved.
369N/A#
844N/A# This makefile drives the production of the IA scheduling class
844N/A# kernel module.
369N/A#
369N/A# intel architecture dependent
369N/A#
369N/A
369N/A#
369N/A# Path to the base of the uts directory tree (usually /usr/src/uts).
369N/A#
369N/AUTSBASE = ../..
369N/A
369N/A#
369N/A# Define the module and object file sets.
369N/A#
369N/AMODULE = IA
369N/AOBJECTS = $(IA_OBJS:%=$(OBJS_DIR)/%)
369N/ALINTS = $(IA_OBJS:%.o=$(LINTS_DIR)/%.ln)
369N/AROOTMODULE = $(USR_SCHED_DIR)/$(MODULE)
1483N/A
1483N/A#
1483N/A# Include common rules.
1483N/A#
1483N/Ainclude $(UTSBASE)/intel/Makefile.intel
1483N/A
690N/A#
690N/A# Define targets
690N/A#
690N/AALL_TARGET = $(BINARY)
690N/ALINT_TARGET = $(MODULE).lint
369N/AINSTALL_TARGET = $(BINARY) $(ROOTMODULE)
369N/A
369N/A#
369N/A# Define dependency on TS
369N/A#
3477N/ALDFLAGS += -dy -N sched/TS
3477N/A
369N/A#
369N/A# Default build targets.
369N/A#
369N/A.KEEP_STATE:
369N/A
369N/Adef: $(DEF_DEPS)
369N/A
369N/Aall: $(ALL_DEPS)
369N/A
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