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, Version 1.0 only 6# (the "License"). You may not use this file except in compliance 7# with the License. 8# 9# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 10# or http://www.opensolaris.org/os/licensing. 11# See the License for the specific language governing permissions 12# and limitations under the License. 13# 14# When distributing Covered Code, include this CDDL HEADER in each 15# file and include the License file at usr/src/OPENSOLARIS.LICENSE. 16# If applicable, add the following below this CDDL HEADER, with the 17# fields enclosed by brackets "[]" replaced with your own identifying 18# information: Portions Copyright [yyyy] [name of copyright owner] 19# 20# CDDL HEADER END 21# 22# 23# Copyright 2004 Sun Microsystems, Inc. All rights reserved. 24# Use is subject to license terms. 25# 26# ident "%Z%%M% %I% %E% SMI" 27# 28 29PROG= ld 30 31include $(SRC)/cmd/Makefile.cmd 32include $(SRC)/cmd/sgs/Makefile.com 33 34COMOBJS= ld.o 35BLTOBJ= msg.o 36 37OBJS = $(BLTOBJ) $(MACHOBJS) $(COMOBJS) 38.PARALLEL: $(OBJS) 39 40MAPFILE= ../common/mapfile-vers 41 42# Building SUNWonld results in a call to the `package' target. Requirements 43# needed to run this application on older releases are established: 44# dlopen/dlclose requires libdl.so.1 prior to 5.10 45# 46DLLIB = $(VAR_DL_LIB) 47package := DLLIB = $(VAR_PKG_DL_LIB) 48 49LLDFLAGS = $(VAR_LD_LLDFLAGS) 50LLDFLAGS64 = $(VAR_LD_LLDFLAGS64) 51LDFLAGS += $(VERSREF) $(LAZYLOAD) $(BDIRECT) \ 52 $(USE_PROTO) -M$(MAPFILE) 53LLDLIBS= -lelf $(DLLIB) $(CONVLIBDIR) -lconv 54LLDLIBS64= -lelf $(DLLIB) $(CONVLIBDIR64) -lconv 55 56LDFLAGS += $(LLDFLAGS) 57LDLIBS += $(LLDLIBS) 58LINTFLAGS += -x 59LINTFLAGS64 += -x 60CLEANFILES += $(LINTOUTS) 61 62native := LDFLAGS = -R$(SGSPROTO) $(ZNOVERSION) 63native := LLDLIBS = -L$(SGSPROTO) -lelf -ldl $(CONVLIBDIR) \ 64 -lconv $(VAR_LD_NATIVE_LLDLIBS) 65 66BLTDEFS= msg.h 67BLTDATA= msg.c 68BLTMESG= $(SGSMSGDIR)/ld 69 70BLTFILES= $(BLTDEFS) $(BLTDATA) $(BLTMESG) 71 72SGSMSGCOM= ../common/ld.msg 73SGSMSGTARG= $(SGSMSGCOM) 74SGSMSGALL= $(SGSMSGCOM) 75SGSMSGFLAGS += -h $(BLTDEFS) -d $(BLTDATA) -m $(BLTMESG) -n ld_msg 76 77SRCS= $(MACHOBJS:%.o=%.c) $(COMOBJS:%.o=../common/%.c) $(BLTDATA) 78LINTSRCS= $(SRCS) ../common/lintsup.c 79 80ROOTCCSBIN= $(ROOT)/usr/ccs/bin 81ROOTCCSBINPROG= $(PROG:%=$(ROOTCCSBIN)/%) 82 83CLEANFILES += $(BLTFILES) 84 85FILEMODE= 0755 86