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