#
# CDDL HEADER START
#
# The contents of this file are subject to the terms of the
# Common Development and Distribution License (the "License").
# You may not use this file except in compliance with the License.
#
# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
# or http://www.opensolaris.org/os/licensing.
# See the License for the specific language governing permissions
# and limitations under the License.
#
# When distributing Covered Code, include this CDDL HEADER in each
# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
# If applicable, add the following below this CDDL HEADER, with the
# fields enclosed by brackets "[]" replaced with your own identifying
# information: Portions Copyright [yyyy] [name of copyright owner]
#
# CDDL HEADER END
#
#
# Copyright (c) 2010, 2012, Oracle and/or its affiliates. All rights reserved.
#
include $(SRC)/lib/Makefile.lib
LIBRARY = $(BRAND)_librtld_db.a
VERS = .1
CSRCS = $(COBJS:%o=$(BRAND_SHARED)/librtld_db/common/%c)
SRCS = $(CSRCS)
SRCDIR = $(BRAND_SHARED)/librtld_db/common
UTSBASE = $(SRC)/uts
#
# ATTENTION:
# Librtl_db brand plugin libraries should NOT directly invoke any
# libproc.so interfaces or be linked against libproc. If a librtl_db
# brand plugin library uses libproc.so interfaces then it may break
# any other librtld_db consumers (like mdb) that tries to attach
# to a branded process. The only safe interfaces that the a librtld_db
# brand plugin library can use to access a target process are the
# proc_service(3PROC) apis.
#
DYNFLAGS += $(VERSREF) -M$(BRAND_SHARED)/librtld_db/common/mapfile-vers
LIBS = $(DYNLIB)
LDLIBS += -lc -lrtld_db
CFLAGS += $(CCVERBOSE)
CPPFLAGS += -D_REENTRANT \
-I$(SRC)/cmd/sgs/librtld_db/common \
-I$(SRC)/cmd/sgs/include \
-I$(SRC)/cmd/sgs/include/$(MACH)
INSTALL_LIBDIR= usr/lib/brand/$(BRAND)
#
# The top level Makefiles define define TEXT_DOMAIN. But librtld_db.so.1
# isn't internationalized and this library won't be either. The only
# messages that this library can generate are messages used for debugging
# the operation of the library itself.
#
DTEXTDOM =
.KEEP_STATE:
all: $(LIBS)
lint: lintcheck
pics/%64.o: $(BRAND_SHARED)/librtld_db/common/%.c
$(COMPILE.c) -D_ELF64 $(PICFLAGS) -o $@ $<
$(POST_PROCESS_O)
include $(SRC)/lib/Makefile.targ