dmake: do not set MAKEFLAGS=k
[unleashed/tickless.git] / usr / src / lib / brand / shared / librtld_db / Makefile.com
blob49245fbea1cfd7b20393b76f9104528327e63bfc
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 (c) 2010, Oracle and/or its affiliates. All rights reserved.
25 include $(SRC)/lib/Makefile.lib
27 LIBRARY =       $(BRAND)_librtld_db.a
28 VERS    =       .1
30 CSRCS =         $(COBJS:%o=$(BRAND_SHARED)/librtld_db/common/%c)
31 SRCS  =         $(CSRCS)
33 SRCDIR =        $(BRAND_SHARED)/librtld_db/common
34 UTSBASE =       $(SRC)/uts
37 # ATTENTION:
38 #       Librtl_db brand plugin libraries should NOT directly invoke any
39 #       libproc.so interfaces or be linked against libproc.  If a librtl_db
40 #       brand plugin library uses libproc.so interfaces then it may break
41 #       any other librtld_db consumers (like mdb) that tries to attach
42 #       to a branded process.  The only safe interfaces that the a librtld_db
43 #       brand plugin library can use to access a target process are the
44 #       proc_service(3PROC) apis.
46 DYNFLAGS +=     $(VERSREF) -Wl,-M$(BRAND_SHARED)/librtld_db/common/mapfile-vers
47 LIBS =          $(DYNLIB)
48 LDLIBS +=       -lc -lrtld_db
49 CPPFLAGS +=      \
50                         -I$(SRC)/cmd/sgs/librtld_db/common \
51                         -I$(SRC)/cmd/sgs/include \
52                         -I$(SRC)/cmd/sgs/include/$(MACH)
54 ROOTLIBDIR =    $(ROOT)/usr/lib/brand/$(BRAND)
55 ROOTLIBDIR64 =  $(ROOT)/usr/lib/brand/$(BRAND)/$(MACH64)
58 # The top level Makefiles define define TEXT_DOMAIN.  But librtld_db.so.1
59 # isn't internationalized and this library won't be either.  The only
60 # messages that this library can generate are messages used for debugging
61 # the operation of the library itself.
63 DTEXTDOM =
65 .KEEP_STATE:
67 all: $(LIBS)
70 pics/%64.o:     $(BRAND_SHARED)/librtld_db/common/%.c
71                 $(COMPILE.c) -D_ELF64 $(PICFLAGS) -o $@ $<
72                 $(POST_PROCESS_O)
74 include $(SRC)/lib/Makefile.targ