1#
2# CDDL HEADER START
3#
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.
7#
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.
12#
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]
18#
19# CDDL HEADER END
20#
21#
22# Copyright 2006 Sun Microsystems, Inc.  All rights reserved.
23# Use is subject to license terms.
24#
25# ident	"%Z%%M%	%I%	%E% SMI"
26#
27
28LIBRARY =	liblddbg.a
29VERS =		.4
30
31COMOBJS =	args.o		audit.o		debug.o		syminfo.o \
32		tls.o
33
34COMOBJS32 =	bindings32.o	cap32.o		dynamic32.o	elf32.o \
35		entry32.o	files32.o	got32.o 	libs32.o \
36		map32.o		move32.o	phdr32.o	relocate32.o \
37		sections32.o	segments32.o	shdr32.o	statistics32.o \
38		support32.o	syms32.o	unused32.o	util32.o \
39		version32.o
40
41COMOBJS64 =	bindings64.o	cap64.o		dynamic64.o	elf64.o \
42		entry64.o	files64.o	got64.o		libs64.o \
43		map64.o		move64.o	phdr64.o	relocate64.o \
44		sections64.o	segments64.o	shdr64.o	statistics64.o \
45		support64.o	syms64.o	unused64.o	util64.o \
46		version64.o
47
48BLTOBJ =	msg.o
49
50TOOLOBJ =	alist.o
51
52OBJECTS =	$(BLTOBJ) $(COMOBJS) $(COMOBJS32) $(COMOBJS64) $(TOOLOBJ)
53
54
55include		$(SRC)/lib/Makefile.lib
56include		$(SRC)/cmd/sgs/Makefile.com
57
58SRCDIR =	../common
59
60LINTFLAGS +=	-u -D_REENTRANT
61LINTFLAGS64 +=	-u -D_REENTRANT
62
63CPPFLAGS +=	-I$(SRCBASE)/lib/libc/inc $(VAR_LIBLDDBG_CPPFLAGS)
64DYNFLAGS +=	$(VERSREF) $(ZLAZYLOAD) '-R$$ORIGIN'
65LDLIBS +=	$(CONVLIBDIR) $(CONV_LIB) -lc
66
67# A bug in pmake causes redundancy when '+=' is conditionally assigned, so
68# '=' is used with extra variables.
69# $(DYNLIB) :=  DYNFLAGS += $(USE_PROTO)
70#
71XXXFLAGS=
72$(DYNLIB) :=	XXXFLAGS= $(USE_PROTO)
73DYNFLAGS +=     $(XXXFLAGS)
74
75native :=	DYNFLAGS	+= $(CONVLIBDIR)
76
77BLTDEFS =	msg.h
78BLTDATA =	msg.c
79BLTMESG =	$(SGSMSGDIR)/liblddbg
80
81BLTFILES =	$(BLTDEFS) $(BLTDATA) $(BLTMESG)
82
83SGSMSGCOM =	../common/liblddbg.msg
84SGSMSGALL =	$(SGSMSGCOM)
85SGSMSGTARG =	$(SGSMSGCOM)
86SGSMSGFLAGS +=	-h $(BLTDEFS) -d $(BLTDATA) -m $(BLTMESG) -n liblddbg_msg
87
88CHKSRCS =	$(COMOBJS32:%32.o=../common/%.c)
89
90SRCS =		../common/llib-llddbg
91LIBSRCS =	$(COMOBJS:%.o=../common/%.c) \
92		$(TOOLOBJ:%.o=$(SGSTOOLS)/common/%.c) $(BLTDATA)
93
94LINTSRCS =	$(LIBSRCS) ../common/lintsup.c
95LINTSRCS32 =	$(COMOBJS32:%32.o=../common/%.c)
96LINTSRCS64 =	$(COMOBJS64:%64.o=../common/%.c)
97
98CLEANFILES +=	$(LINTOUTS) $(BLTFILES)
99CLOBBERFILES +=	$(DYNLIB) $(LINTLIBS) $(LIBLINKS)
100
101ROOTFS_DYNLIB =	$(DYNLIB:%=$(ROOTFS_LIBDIR)/%)
102