Makefile revision 66f9d5cb3cc0652e2d9d1366fb950efbe4ca2f24
259N/A#
259N/A# CDDL HEADER START
259N/A#
259N/A# The contents of this file are subject to the terms of the
259N/A# Common Development and Distribution License (the "License").
259N/A# You may not use this file except in compliance with the License.
259N/A#
259N/A# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
259N/A# or http://www.opensolaris.org/os/licensing.
259N/A# See the License for the specific language governing permissions
259N/A# and limitations under the License.
259N/A#
259N/A# When distributing Covered Code, include this CDDL HEADER in each
259N/A# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
259N/A# If applicable, add the following below this CDDL HEADER, with the
259N/A# fields enclosed by brackets "[]" replaced with your own identifying
259N/A# information: Portions Copyright [yyyy] [name of copyright owner]
259N/A#
259N/A# CDDL HEADER END
259N/A#
3661N/A
259N/A#
259N/A# Copyright 2005 Sun Microsystems, Inc. All rights reserved.
259N/A# Use is subject to license terms.
259N/A#
259N/A# ident "%Z%%M% %I% %E% SMI"
259N/A#
259N/A
259N/A#
618N/A# uts/intel/io/sata/Makefile
817N/A#
817N/A# This makefile drives the production of the sata "misc"
618N/A# kernel module.
1273N/A#
259N/A# intel architecture dependent
3661N/A#
3661N/A
259N/A#
259N/A# Path to the base of the uts directory tree (usually /usr/src/uts).
259N/A#
259N/AUTSBASE = ../..
259N/A
259N/A#
259N/A# Define the module and object file sets.
259N/A#
259N/AMODULE = sata
259N/AOBJECTS = $(SATA_OBJS:%=$(OBJS_DIR)/%)
259N/ALINTS = $(SATA_OBJS:%.o=$(LINTS_DIR)/%.ln)
259N/AROOTMODULE = $(ROOT_MISC_DIR)/$(MODULE)
259N/A
259N/A#
259N/A# Include common rules.
259N/A#
259N/Ainclude $(UTSBASE)/intel/Makefile.intel
259N/A
259N/A#
259N/A# Define targets
259N/A#
259N/AALL_TARGET = $(BINARY)
259N/ALINT_TARGET = $(MODULE).lint
259N/AINSTALL_TARGET = $(BINARY) $(ROOTMODULE)
259N/A
259N/A#
259N/A# Overrides.
259N/A#
259N/ADEBUG_FLGS =
259N/ADEBUG_DEFS += $(DEBUG_FLGS)
259N/A
259N/A#
259N/A# lint pass one enforcement
259N/A#
259N/ACFLAGS += $(CCVERBOSE)
259N/A
259N/A#
259N/A# dependency on scsi module
259N/A#
259N/ALDFLAGS += -dy -Nmisc/scsi
259N/A
259N/A#
259N/A# Default build targets.
259N/A#
259N/A.KEEP_STATE:
259N/A
259N/Adef: $(DEF_DEPS)
259N/A
259N/Aall: $(ALL_DEPS)
259N/A
259N/Aclean: $(CLEAN_DEPS)
259N/A
259N/Aclobber: $(CLOBBER_DEPS)
259N/A
259N/Alint: $(LINT_DEPS)
259N/A
modlintlib: $(MODLINTLIB_DEPS)
clean.lint: $(CLEAN_LINT_DEPS)
install: $(INSTALL_DEPS)
#
# Include common targets.
#
include $(UTSBASE)/intel/Makefile.targ