dmake: do not set MAKEFLAGS=k
[unleashed/tickless.git] / usr / src / lib / librsc / Makefile.com
blobba18c3bcd7ea1f2caf098d4acd41837d6ea4e7ad
2 # CDDL HEADER START
4 # The contents of this file are subject to the terms of the
5 # Common Development and Distribution License (the "License").
6 # You may not use this file except in compliance with the License.
8 # You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9 # or http://www.opensolaris.org/os/licensing.
10 # See the License for the specific language governing permissions
11 # and limitations under the License.
13 # When distributing Covered Code, include this CDDL HEADER in each
14 # file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15 # If applicable, add the following below this CDDL HEADER, with the
16 # fields enclosed by brackets "[]" replaced with your own identifying
17 # information: Portions Copyright [yyyy] [name of copyright owner]
19 # CDDL HEADER END
22 # Copyright 2009 Sun Microsystems, Inc.  All rights reserved.
23 # Use is subject to license terms.
26 LIBRARY= librsc.a
27 VERS= .1
29 # PLATFORM_OBJECTS is defined in platform Makefile
30 OBJECTS= $(PLATFORM_OBJECTS)
32 include $(SRC)/lib/Makefile.lib
33 include $(SRC)/Makefile.psm
35 CPPFLAGS +=     $(PLATINCS)
37 LINKED_DIRS     = $(LINKED_PLATFORMS:%=$(USR_PLAT_DIR)/%)
38 LINKED_LIB_DIRS = $(LINKED_PLATFORMS:%=$(USR_PLAT_DIR)/%/lib)
39 LINKED_LIBRSC_DIR       = \
40         $(LINKED_PLATFORMS:%=$(USR_PLAT_DIR)/%/lib/librsc.so)
41 LINKED_LIBRSC1_DIR      = \
42         $(LINKED_PLATFORMS:%=$(USR_PLAT_DIR)/%/lib/librsc.so.1)
43 LINKED_LLIBLRSC_DIR     = \
44         $(LINKED_PLATFORMS:%=$(USR_PLAT_DIR)/%/lib/llib-lrsc.ln)
46 # There should be a mapfile here
47 MAPFILES =
49 SRCDIR =        common
50 LIBS = $(DYNLIB)
51 LDLIBS +=       -lc
52 PLATLIBS =      $(USR_PLAT_DIR)/$(PLATFORM)/lib/
53 INS.slink6=     $(RM) -r $@; $(SYMLINK) ../../$(PLATFORM)/lib/librsc.so.1 $@
54 INS.slink7=     $(RM) -r $@; $(SYMLINK) ../../$(PLATFORM)/lib/librsc.so $@
55 INS.slink8=     $(RM) -r $@; $(SYMLINK) ../../$(PLATFORM)/lib/llib-lrsc.ln $@
57 .KEEP_STATE:
60 # build rules
62 all:    $(LIBS)
65 # install rules
67 $(PLATLIBS)/librsc.so:
68         $(RM) -r $@; $(SYMLINK) librsc.so.1 $@
70 install:        all $(USR_PSM_LIBS) $(PLATLIBS)/librsc.so \
71                 $(LINKED_DIRS) $(LINKED_LIB_DIRS) \
72                 $(LINKED_LIBRSC_DIR) $(LINKED_LIBRSC1_DIR) \
73                 $(LINKED_LLIBLRSC_DIR)
75 $(USR_PSM_LIB_DIR)/%: % $(USR_PSM_LIB_DIR)
76         $(INS.file)
78 $(LINKED_DIRS): $(USR_PLAT_DIR)
79         -$(INS.dir)
81 $(LINKED_LIB_DIRS):     $(LINKED_DIRS)
82         -$(INS.dir)
84 $(LINKED_LIBRSC_DIR): $(USR_PLAT_DIR)
85         -$(INS.slink7)
87 $(LINKED_LIBRSC1_DIR): $(USR_PLAT_DIR)
88         -$(INS.slink6)
90 $(LINKED_LLIBLRSC_DIR): $(USR_PLAT_DIR)
91         -$(INS.slink8)
93 include $(SRC)/lib/Makefile.targ