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