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