Makefile revision 24fe0b3bf671e123467ce1df0b67cadd3614c8e4
bedb386242727f98834c64397487f48d5eb6116cboli#
bedb386242727f98834c64397487f48d5eb6116cboli# CDDL HEADER START
bedb386242727f98834c64397487f48d5eb6116cboli#
bedb386242727f98834c64397487f48d5eb6116cboli# The contents of this file are subject to the terms of the
bedb386242727f98834c64397487f48d5eb6116cboli# Common Development and Distribution License (the "License").
bedb386242727f98834c64397487f48d5eb6116cboli# You may not use this file except in compliance with the License.
bedb386242727f98834c64397487f48d5eb6116cboli#
bedb386242727f98834c64397487f48d5eb6116cboli# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
8cf870d281dc8c242f083d14dfef05f24aa5fceeJnRouvignac# or http://www.opensolaris.org/os/licensing.
8cf870d281dc8c242f083d14dfef05f24aa5fceeJnRouvignac# See the License for the specific language governing permissions
bedb386242727f98834c64397487f48d5eb6116cboli# and limitations under the License.
bedb386242727f98834c64397487f48d5eb6116cboli#
bedb386242727f98834c64397487f48d5eb6116cboli# When distributing Covered Code, include this CDDL HEADER in each
bedb386242727f98834c64397487f48d5eb6116cboli# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
8cf870d281dc8c242f083d14dfef05f24aa5fceeJnRouvignac# If applicable, add the following below this CDDL HEADER, with the
8cf870d281dc8c242f083d14dfef05f24aa5fceeJnRouvignac# fields enclosed by brackets "[]" replaced with your own identifying
8cf870d281dc8c242f083d14dfef05f24aa5fceeJnRouvignac# information: Portions Copyright [yyyy] [name of copyright owner]
8cf870d281dc8c242f083d14dfef05f24aa5fceeJnRouvignac#
bedb386242727f98834c64397487f48d5eb6116cboli# CDDL HEADER END
bedb386242727f98834c64397487f48d5eb6116cboli#
bedb386242727f98834c64397487f48d5eb6116cboli#
bedb386242727f98834c64397487f48d5eb6116cboli# Copyright 2009 Sun Microsystems, Inc. All rights reserved.
bedb386242727f98834c64397487f48d5eb6116cboli# Use is subject to license terms.
65e99be301d5a19db33f25841f671756e8dbb9b5ludovicp#
bedb386242727f98834c64397487f48d5eb6116cboli#
bedb386242727f98834c64397487f48d5eb6116cboli# Platform specific Makefile for libc_psr.
53247d28ba99538f841a13ea2cde01c3faa3ef36kenneth_suter#
bedb386242727f98834c64397487f48d5eb6116cboli
bedb386242727f98834c64397487f48d5eb6116cboliPLATFORM = sun4u
bedb386242727f98834c64397487f48d5eb6116cboliCLASS = 64
bedb386242727f98834c64397487f48d5eb6116cboli
bedb386242727f98834c64397487f48d5eb6116cboliOBJECTS = memcpy.o memset.o memcmp.o
bedb386242727f98834c64397487f48d5eb6116cboli
bedb386242727f98834c64397487f48d5eb6116cboliinclude ../Makefile.com
bedb386242727f98834c64397487f48d5eb6116cboli
bedb386242727f98834c64397487f48d5eb6116cboliASDEFS += -D__sparcv9
bedb386242727f98834c64397487f48d5eb6116cboliASFLAGS += -xarch=v9a
bedb386242727f98834c64397487f48d5eb6116cboli
bedb386242727f98834c64397487f48d5eb6116cboliinclude $(SRC)/Makefile.master.64
bedb386242727f98834c64397487f48d5eb6116cboli
bedb386242727f98834c64397487f48d5eb6116cboli# Redefine shared object build rule to use $(LD) directly (this avoids .init
bedb386242727f98834c64397487f48d5eb6116cboli# and .fini sections being added).
bedb386242727f98834c64397487f48d5eb6116cboli
a84551d9d7d05a9b2c8e087dcba3839e8ce7504eboliBUILD.SO= $(LD) -o $@ -G $(DYNFLAGS) $(PICS) $(LDLIBS)
a84551d9d7d05a9b2c8e087dcba3839e8ce7504eboli
53247d28ba99538f841a13ea2cde01c3faa3ef36kenneth_suter.KEEP_STATE:
53247d28ba99538f841a13ea2cde01c3faa3ef36kenneth_suter
bedb386242727f98834c64397487f48d5eb6116cboliMODULE = libc_psr.so.1
bedb386242727f98834c64397487f48d5eb6116cboliLIBC_PSR64_DIRS = $(LINKED_PLATFORMS:%=$(ROOT_PLAT_DIR)/%/lib/$(MACH64))
bedb386242727f98834c64397487f48d5eb6116cboliLIBC_PSR64_LINKS = $(LINKED_PLATFORMS:%=$(ROOT_PLAT_DIR)/%/lib/$(MACH64)/$(MODULE))
bedb386242727f98834c64397487f48d5eb6116cboliINS.slink6 = $(RM) -r $@; $(SYMLINK) ../../../$(PLATFORM)/lib/$(MACH64)/$(MODULE) $@
bedb386242727f98834c64397487f48d5eb6116cboli
bedb386242727f98834c64397487f48d5eb6116cboli$(LIBC_PSR64_DIRS):
bedb386242727f98834c64397487f48d5eb6116cboli -$(INS.dir.root.bin)
bedb386242727f98834c64397487f48d5eb6116cboli
bedb386242727f98834c64397487f48d5eb6116cboli$(LIBC_PSR64_LINKS): $(LIBC_PSR64_DIRS)
bedb386242727f98834c64397487f48d5eb6116cboli -$(INS.slink6)
bedb386242727f98834c64397487f48d5eb6116cboli
bedb386242727f98834c64397487f48d5eb6116cboliall: $(LIBS)
bedb386242727f98834c64397487f48d5eb6116cboli
bedb386242727f98834c64397487f48d5eb6116cboliinstall: all $(LIBC_PSR64_LINKS) $(ROOT_PSM_LIB64_DIR)/$(LIBS)
bedb386242727f98834c64397487f48d5eb6116cboli
bedb386242727f98834c64397487f48d5eb6116cboliinclude ../../Makefile.targ
bedb386242727f98834c64397487f48d5eb6116cboli