Makefile revision 7c478bd95313f5f23a4c958a745db2134aa03244
3973N/A#
3973N/A# CDDL HEADER START
3973N/A#
3973N/A# The contents of this file are subject to the terms of the
3973N/A# Common Development and Distribution License, Version 1.0 only
3973N/A# (the "License"). You may not use this file except in compliance
3973N/A# with the License.
3973N/A#
3973N/A# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
3973N/A# or http://www.opensolaris.org/os/licensing.
6982N/A# See the License for the specific language governing permissions
6982N/A# and limitations under the License.
3973N/A#
3973N/A# When distributing Covered Code, include this CDDL HEADER in each
3973N/A# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
6982N/A# If applicable, add the following below this CDDL HEADER, with the
6982N/A# fields enclosed by brackets "[]" replaced with your own identifying
6982N/A# information: Portions Copyright [yyyy] [name of copyright owner]
6982N/A#
6982N/A# CDDL HEADER END
3973N/A#
3973N/A#
3973N/A# uts/sparc/rsmops/Makefile
3973N/A# Copyright 2004 Sun Microsystems, Inc. All rights reserved.
3973N/A# Use is subject to license terms.
6026N/A#
3973N/A#pragma ident "%Z%%M% %I% %E% SMI"
3973N/A#
3973N/A# This makefile drives the production of the rsmops module
3973N/A#
3973N/A
3973N/A#
3973N/A# Path to the base of the uts directory tree (usually /usr/src/uts).
3973N/A#
3973N/AUTSBASE = ../..
3973N/A
6184N/A#
3973N/A# Define the module and object file sets.
3973N/A#
3973N/AMODULE = rsmops
3973N/AOBJECTS = $(RSMOPS_OBJS:%=$(OBJS_DIR)/%)
3973N/ALINTS = $(RSMOPS_OBJS:%.o=$(LINTS_DIR)/%.ln)
3973N/AROOTMODULE = $(ROOT_MISC_DIR)/$(MODULE)
3973N/A
3973N/A#
3973N/A# Include common rules.
3973N/A#
3973N/Ainclude $(UTSBASE)/sparc/Makefile.sparc
3973N/A
3973N/A#
3973N/A# Define targets
3973N/A#
3973N/AALL_TARGET = $(BINARY)
3973N/ALINT_TARGET = $(MODULE).lint
3973N/AINSTALL_TARGET = $(BINARY) $(ROOTMODULE)
3973N/A
3973N/A#
3973N/A# path for rsm_common.h
3973N/A#
3973N/AINC_PATH += -I $(UTSBASE)/common/sys/rsm
3973N/A
3973N/A#
3973N/A# lint pass one enforcement
3973N/A#
3973N/ACFLAGS += $(CCVERBOSE)
3973N/A
3973N/A#
3973N/A# Default build targets.
3973N/A#
3973N/A.KEEP_STATE:
3973N/A
3973N/Adef: $(DEF_DEPS)
3973N/A
3973N/Aall: $(ALL_DEPS)
3973N/A
3973N/Aclean: $(CLEAN_DEPS)
3973N/A
3973N/Aclobber: $(CLOBBER_DEPS)
3973N/A
3973N/Alint: $(LINT_DEPS)
3973N/A
3973N/Amodlintlib: $(MODLINTLIB_DEPS)
3973N/A
3973N/Aclean.lint: $(CLEAN_LINT_DEPS)
3973N/A
3973N/Ainstall: $(INSTALL_DEPS)
3973N/A
3973N/A#
3973N/A# Include common targets.
3973N/A#
3973N/Ainclude $(UTSBASE)/sparc/Makefile.targ
3973N/A