xref: /illumos-gate/usr/src/cmd/sgs/libld/sparcv9/Makefile (revision 355b4669e025ff377602b6fc7caaf30dbc218371)
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#
23# Copyright 2006 Sun Microsystems, Inc.  All rights reserved.
24# Use is subject to license terms.
25#
26# ident	"%Z%%M%	%I%	%E% SMI"
27#
28
29L_MACHOBJS32 =	machrel.sparc32.o	machsym.sparc32.o
30L_MACHOBJS64 =	machrel.sparc64.o	machsym.sparc64.o
31
32include		../Makefile.com
33
34.KEEP_STATE:
35
36ROOTFS_LIBDIR64 = \
37		$(VAR_LIBLD_64_ROOTFS_LIBDIR)
38ROOTFS_DYNLIB64 = \
39		$(DYNLIB:%=$(ROOTFS_LIBDIR64)/%)
40
41SGSMSGTARG +=	$(SGSMSGSPARC)
42
43ELFLIBDIR =	$(ELFLIBDIR64)
44LDDBGLIBDIR =	$(LDDBGLIBDIR64)
45CONVLIBDIR =	$(CONVLIBDIR64)
46
47$(ROOTFS_DYNLIB64) :=	FILEMODE= 755
48
49all:		$(DYNLIB) $(LIBLINKS)
50
51install \
52package:	all $(ROOTFS_DYNLIB64)
53
54include		../Makefile.targ
55include		../../Makefile.sub.64
56
57# Associate ELF32 and ELF64 objects to the appropriate headers.
58
59pics/%32.o :=	CPPFLAGS += -I$(SRCBASE)/uts/$(VAR_PLAT_sparc)/krtld
60pics/%64.o :=	CPPFLAGS += -I$(SRCBASE)/uts/$(VAR_PLAT_sparc)/krtld
61
62# Associate the various lint targets with the appropriate headers/files.
63
64$(LINTOUT32) :=	CPPFLAGS += -I$(SRCBASE)/uts/$(VAR_PLAT_sparc)/krtld \
65		    $(ELFTARGET32)
66$(LINTOUT64) :=	CPPFLAGS += -I$(SRCBASE)/uts/$(VAR_PLAT_sparc)/krtld \
67		    $(ELFTARGET64) -D_ELF64
68$(LINTLIB32) :=	CPPFLAGS += -I$(SRCBASE)/uts/$(VAR_PLAT_sparc)/krtld \
69		    $(ELFTARGET32)
70$(LINTLIB64) :=	CPPFLAGS += -I$(SRCBASE)/uts/$(VAR_PLAT_sparc)/krtld \
71		    $(ELFTARGET64) -D_ELF64
72
73LINTSRCS32 +=	$(G_MACHOBJS32:%32.o=$(SRCBASE)/uts/$(VAR_PLAT_sparc)/krtld/%.c)
74LINTSRCS64 +=	$(G_MACHOBJS64:%64.o=$(SRCBASE)/uts/$(VAR_PLAT_sparc)/krtld/%.c)
75
76# Compensate chkmsg with the doreloc family.
77
78CHKSRCS +=	$(G_MACHOBJS32:%32.o=$(SRCBASE)/uts/$(VAR_PLAT_sparc)/krtld/%.c)
79CHKSRCS +=	$(G_MACHOBJS64:%64.o=$(SRCBASE)/uts/$(VAR_PLAT_sparc)/krtld/%.c)
80
81pics/%32.o: \
82		$(SRCBASE)/uts/$(VAR_PLAT_sparc)/krtld/%.c
83		$(COMPILE.c) -o $@ $(ELFTARGET32) $<
84		$(POST_PROCESS_O)
85
86pics/%64.o: \
87		$(SRCBASE)/uts/$(VAR_PLAT_sparc)/krtld/%.c
88		$(COMPILE.c) -o $@ $(ELFTARGET64) -D_ELF64 $<
89		$(POST_PROCESS_O)
90