xref: /illumos-gate/usr/src/cmd/sgs/libdl/Makefile.com (revision 24da5b34)
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 2007 Sun Microsystems, Inc.  All rights reserved.
23# Use is subject to license terms.
24#
25# ident	"%Z%%M%	%I%	%E% SMI"
26#
27
28LIBRARY=	libdl.a
29VERS=		.1
30
31include 	$(SRC)/lib/Makefile.lib
32include 	$(SRC)/cmd/sgs/Makefile.com
33
34SRCDIR =	../common
35
36MAPFILES +=	mapfile-vers $(MAPFILE.FLT)
37
38# Redefine shared object build rule to use $(LD) directly (this avoids .init
39# and .fini sections being added).  Also, since there are no OBJECTS, turn
40# off CTF.
41
42BUILD.SO=	$(LD) -o $@ -G $(DYNFLAGS)
43CTFMERGE_LIB=	:
44
45DYNFLAGS +=	$(ZNODUMP) $(VERSREF) $(CONVLIBDIR) -lconv
46
47LINTFLAGS +=	-u
48LINTFLAGS64 +=	-u
49SRCS=		../common/llib-ldl
50
51CLEANFILES +=
52CLOBBERFILES +=	$(DYNLIB) $(LINTLIB) $(LINTOUTS) $(LIBLINKS)
53
54
55ROOTFS_DYNLIB64=	$(DYNLIB:%=$(ROOTFS_LIBDIR64)/%)
56ROOTFS_LINTLIB64=	$(LINTLIB:%=$(ROOTFS_LIBDIR64)/%)
57
58#
59# In the libc/libthread unified environment:
60# This library needs to be placed in /lib to allow
61# dlopen() functionality while in single-user mode.
62ROOTFS_DYNLIB=		$(DYNLIB:%=$(ROOTFS_LIBDIR)/%)
63ROOTFS_LINTLIB=		$(LINTLIB:%=$(ROOTFS_LIBDIR)/%)
64
65$(ROOTFS_DYNLIB) :=	FILEMODE= 755
66$(ROOTFS_DYNLIB64) :=	FILEMODE= 755
67
68#
69# In the libc/libthread un-unified environment:
70# A version of this library needs to be placed in /etc/lib to allow
71# dlopen() functionality while in single-user mode.
72ETCLIBDIR=	$(ROOT)/etc/lib
73ETCDYNLIB=	$(DYNLIB:%=$(ETCLIBDIR)/%)
74
75$(ETCDYNLIB) :=	FILEMODE= 755
76