xref: /titanic_51/usr/src/lib/librsc/Makefile.com (revision 48bc00d6814e04ff3edb32cafe7d1bc580baff68)
103831d35Sstevel#
203831d35Sstevel# CDDL HEADER START
303831d35Sstevel#
403831d35Sstevel# The contents of this file are subject to the terms of the
5f808c858Sraf# Common Development and Distribution License (the "License").
6f808c858Sraf# You may not use this file except in compliance with the License.
703831d35Sstevel#
803831d35Sstevel# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
903831d35Sstevel# or http://www.opensolaris.org/os/licensing.
1003831d35Sstevel# See the License for the specific language governing permissions
1103831d35Sstevel# and limitations under the License.
1203831d35Sstevel#
1303831d35Sstevel# When distributing Covered Code, include this CDDL HEADER in each
1403831d35Sstevel# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
1503831d35Sstevel# If applicable, add the following below this CDDL HEADER, with the
1603831d35Sstevel# fields enclosed by brackets "[]" replaced with your own identifying
1703831d35Sstevel# information: Portions Copyright [yyyy] [name of copyright owner]
1803831d35Sstevel#
1903831d35Sstevel# CDDL HEADER END
2003831d35Sstevel#
2103831d35Sstevel#
2224fe0b3bSjmcp# Copyright 2009 Sun Microsystems, Inc.  All rights reserved.
2303831d35Sstevel# Use is subject to license terms.
2403831d35Sstevel#
2503831d35Sstevel
2603831d35SstevelLIBRARY= librsc.a
2703831d35SstevelVERS= .1
2803831d35Sstevel
2903831d35Sstevel# PLATFORM_OBJECTS is defined in platform Makefile
3003831d35SstevelOBJECTS= $(PLATFORM_OBJECTS)
3103831d35Sstevel
3203831d35Sstevelinclude $(SRC)/lib/Makefile.lib
3303831d35Sstevelinclude $(SRC)/Makefile.psm
3403831d35Sstevel
3503831d35SstevelCPPFLAGS +=	$(PLATINCS)
3603831d35Sstevel
3703831d35SstevelLINKED_DIRS	= $(LINKED_PLATFORMS:%=$(USR_PLAT_DIR)/%)
3803831d35SstevelLINKED_LIB_DIRS	= $(LINKED_PLATFORMS:%=$(USR_PLAT_DIR)/%/lib)
3903831d35SstevelLINKED_LIBRSC_DIR	= \
4003831d35Sstevel	$(LINKED_PLATFORMS:%=$(USR_PLAT_DIR)/%/lib/librsc.so)
4103831d35SstevelLINKED_LIBRSC1_DIR	= \
4203831d35Sstevel	$(LINKED_PLATFORMS:%=$(USR_PLAT_DIR)/%/lib/librsc.so.1)
4303831d35SstevelLINKED_LLIBLRSC_DIR 	= \
4403831d35Sstevel	$(LINKED_PLATFORMS:%=$(USR_PLAT_DIR)/%/lib/llib-lrsc.ln)
4503831d35Sstevel
46f808c858Sraf# There should be a mapfile here
47f808c858SrafMAPFILES =
48f808c858Sraf
4903831d35SstevelSRCDIR =	common
5003831d35SstevelLIBS = $(DYNLIB) $(LINTLIB)
5103831d35SstevelCFLAGS +=	$(CCVERBOSE)
5203831d35SstevelLDLIBS +=	-lc
5303831d35SstevelPLATLIBS =	$(USR_PLAT_DIR)/$(PLATFORM)/lib/
5424fe0b3bSjmcpINS.slink6=	$(RM) -r $@; $(SYMLINK) ../../$(PLATFORM)/lib/librsc.so.1 $@
5524fe0b3bSjmcpINS.slink7=	$(RM) -r $@; $(SYMLINK) ../../$(PLATFORM)/lib/librsc.so $@
5624fe0b3bSjmcpINS.slink8=	$(RM) -r $@; $(SYMLINK) ../../$(PLATFORM)/lib/llib-lrsc.ln $@
5703831d35Sstevel
5803831d35Sstevel.KEEP_STATE:
5903831d35Sstevel
6003831d35Sstevel#
6103831d35Sstevel# build/lint rules
6203831d35Sstevel#
6303831d35Sstevelall:	$(LIBS)
6403831d35Sstevellint:	lintcheck
6503831d35Sstevel
6603831d35Sstevel#
6703831d35Sstevel# install rules
6803831d35Sstevel#
6903831d35Sstevel$(PLATLIBS)/librsc.so:
7024fe0b3bSjmcp	$(RM) -r $@; $(SYMLINK) librsc.so.1 $@
7103831d35Sstevel
7203831d35Sstevelinstall:	all $(USR_PSM_LIBS) $(PLATLIBS)/librsc.so \
7303831d35Sstevel		$(LINKED_DIRS) $(LINKED_LIB_DIRS) \
7403831d35Sstevel		$(LINKED_LIBRSC_DIR) $(LINKED_LIBRSC1_DIR) \
7503831d35Sstevel		$(LINKED_LLIBLRSC_DIR)
7603831d35Sstevel
7703831d35Sstevel$(USR_PSM_LIB_DIR)/%: % $(USR_PSM_LIB_DIR)
7803831d35Sstevel	$(INS.file)
7903831d35Sstevel
8003831d35Sstevel$(LINKED_DIRS):	$(USR_PLAT_DIR)
81*48bc00d6Sjmcp	-$(INS.dir)
8203831d35Sstevel
8303831d35Sstevel$(LINKED_LIB_DIRS):	$(LINKED_DIRS)
84*48bc00d6Sjmcp	-$(INS.dir)
8503831d35Sstevel
8603831d35Sstevel$(LINKED_LIBRSC_DIR): $(USR_PLAT_DIR)
8703831d35Sstevel	-$(INS.slink7)
8803831d35Sstevel
8903831d35Sstevel$(LINKED_LIBRSC1_DIR): $(USR_PLAT_DIR)
9003831d35Sstevel	-$(INS.slink6)
9103831d35Sstevel
9203831d35Sstevel$(LINKED_LLIBLRSC_DIR): $(USR_PLAT_DIR)
9303831d35Sstevel	-$(INS.slink8)
9403831d35Sstevel
9503831d35Sstevelinclude $(SRC)/lib/Makefile.targ
96