Makefile revision fcf3ce441efd61da9bb2884968af01cb7c1452cc
341N/A# CDDL HEADER START
341N/A#
1488N/A# The contents of this file are subject to the terms of the
341N/A# Common Development and Distribution License (the "License").
341N/A# You may not use this file except in compliance with the License.
919N/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# Copyright 2008 Sun Microsystems, Inc. All rights reserved.
919N/A# Use is subject to license terms.
341N/A#
341N/A# uts/intel/sv/Makefile
341N/A#
341N/A# This makefile drives the production of the sv kernel module
493N/A#
341N/A# intel implementation architecture dependent
341N/A#
1408N/A
341N/A#
911N/A# Path to the base of the uts directory tree (usually /usr/src/uts).
1408N/A#
1408N/A#
1408N/AUTSBASE = ../..
911N/A
341N/AARCHDIR:sh = cd ..; basename `pwd`
341N/A
1451N/A#
1466N/A# Define the module and object file sets.
1265N/A#
1408N/AMODULE = sv
1408N/AOBJECTS = $(SV_OBJS:%=$(OBJS_DIR)/%)
1408N/ALINTS = $(SV_OBJS:%.o=$(LINTS_DIR)/%.ln)
1179N/AROOTMODULE = $(USR_DRV_DIR)/$(MODULE)
1233N/AINC_PATH += -I$(ROOT)/usr/include
1265N/ACONF_SRCDIR = $(UTSBASE)/common/avs/ns/sv
1179N/A
1408N/A#
1408N/A# Include common rules.
1408N/A#
1408N/Ainclude ../Makefile.$(ARCHDIR)
1179N/Ainclude $(UTSBASE)/common/avs/Makefile.com
1179N/A
1179N/A#
1408N/A# Define targets
1408N/A#
1408N/AALL_TARGET = $(BINARY) $(SRC_CONFILE)
1408N/ALINT_TARGET = $(MODULE).lint
1408N/AINSTALL_TARGET = $(BINARY) $(ROOTMODULE) $(ROOT_CONFFILE)
1265N/A
1408N/A#
1408N/A# lint pass one enforcement
1408N/A#
1408N/ACFLAGS += -v
1408N/ALDFLAGS += -dy -N"drv/nsctl" -N"drv/nskern" -N"misc/spuni"
1265N/A
1408N/A.KEEP_STATE:
1408N/A
1265N/Adef: $(DEF_DEPS)
1408N/A
1408N/Aall: $(ALL_DEPS)
1408N/A
1265N/Aclean: $(CLEAN_DEPS)
1179N/A
1408N/Aclobber: $(CLOBBER_DEPS)
1408N/A
1408N/Alint: $(LINT_DEPS)
1408N/A
1408N/Amodlintlib: $(MODLINTLIB_DEPS)
1408N/A
1408N/Aclean.lint: $(CLEAN_LINT_DEPS)
1408N/A
1408N/Ainstall: $(INSTALL_DEPS)
1408N/A
1408N/A#
1408N/A# Include common targets.
1408N/A#
1408N/Ainclude ../Makefile.targ
1408N/A