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