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