Makefile revision f808c858fa61e7769218966759510a8b1190dfcf
3612N/A#
3612N/A# CDDL HEADER START
3612N/A#
3612N/A# The contents of this file are subject to the terms of the
3612N/A# Common Development and Distribution License (the "License").
3612N/A# You may not use this file except in compliance with the License.
3612N/A#
3612N/A# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
3612N/A# or http://www.opensolaris.org/os/licensing.
3612N/A# See the License for the specific language governing permissions
3612N/A# and limitations under the License.
3612N/A#
3612N/A# When distributing Covered Code, include this CDDL HEADER in each
3612N/A# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
3612N/A# If applicable, add the following below this CDDL HEADER, with the
3612N/A# fields enclosed by brackets "[]" replaced with your own identifying
3612N/A# information: Portions Copyright [yyyy] [name of copyright owner]
3612N/A#
3612N/A# CDDL HEADER END
3612N/A#
3612N/A#
3612N/A# Copyright 2006 Sun Microsystems, Inc. All rights reserved.
3612N/A# Use is subject to license terms.
3612N/A#
3612N/A# ident "%Z%%M% %I% %E% SMI"
3612N/A#
3612N/A
3612N/A#
3612N/A# Platform specific Makefile for libc_psr_hwcap1.
3612N/A#
3612N/A
3612N/APLATFORM = sun4u-us3
3612N/AALT_PLAT = sun4u_hwcap1
3612N/ACOMPAT_PLAT = sun4u
3612N/ACLASS = 32
3612N/A
3612N/AOBJECTS = memcpy.o memset.o memcmp.o
3612N/A
3612N/Ainclude ../Makefile.com
3612N/A
3612N/AMAPFILES = ../../sun4u/mapfile-vers $(MAPFILE-FLTR)
3612N/A
3612N/AASFLAGS += -xarch=v8plusb
3612N/A
3612N/A# Redefine shared object build rule to use $(LD) directly (this avoids .init
3612N/A# and .fini sections being added).
3612N/A
3612N/ABUILD.SO= $(LD) -o $@ -G $(DYNFLAGS) $(PICS) $(LDLIBS)
3612N/A
3612N/A.KEEP_STATE:
3612N/A
3612N/AMODULE = libc_psr_hwcap1.so.1
3612N/ALIBC_PSR_DIR = $(ROOT_PSM_LIB_DIR)/libc_psr
3612N/ALIBC_PSR_LIB = $(LIBC_PSR_DIR)/$(MODULE)
3612N/AINS.libc = $(RM) -r $@; $(INS) -s -f $(@D) $(MODULE)
3612N/A
3612N/A$(LIBC_PSR_DIR):
3612N/A -$(INS.dir.root.bin)
3612N/A
3612N/A$(LIBC_PSR_LIB): $(LIBC_PSR_DIR) $(MODULE)
3612N/A -$(INS.libc)
3612N/A
3612N/Aall: $(LIBS)
3612N/A
3612N/Ainstall: all $(LIBC_PSR_LIB)
3612N/A
3612N/Ainclude ../../Makefile.targ
3853N/A