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 36SGSMSGTARG += $(SGSMSGSPARC) 37 38all: $(DYNLIB) $(LIBLINKS) 39 40install \ 41package: all $(ROOTFS_DYNLIB) 42 43include ../Makefile.targ 44 45# Associate ELF32 and ELF64 objects to the appropriate headers. 46 47pics/%32.o := CPPFLAGS += -I$(SRCBASE)/uts/$(VAR_PLAT_sparc)/krtld 48pics/%64.o := CPPFLAGS += -I$(SRCBASE)/uts/$(VAR_PLAT_sparc)/krtld 49 50# Associate the various lint targets with the appropriate headers/files. 51 52$(LINTOUT32) := CPPFLAGS += -I$(SRCBASE)/uts/$(VAR_PLAT_sparc)/krtld \ 53 $(ELFTARGET32) 54$(LINTOUT64) := CPPFLAGS += -I$(SRCBASE)/uts/$(VAR_PLAT_sparc)/krtld \ 55 $(ELFTARGET64) -D_ELF64 56$(LINTLIB32) := CPPFLAGS += -I$(SRCBASE)/uts/$(VAR_PLAT_sparc)/krtld \ 57 $(ELFTARGET32) 58$(LINTLIB64) := CPPFLAGS += -I$(SRCBASE)/uts/$(VAR_PLAT_sparc)/krtld \ 59 $(ELFTARGET64) -D_ELF64 60 61LINTSRCS32 += $(G_MACHOBJS32:%32.o=$(SRCBASE)/uts/$(VAR_PLAT_sparc)/krtld/%.c) 62LINTSRCS64 += $(G_MACHOBJS64:%64.o=$(SRCBASE)/uts/$(VAR_PLAT_sparc)/krtld/%.c) 63 64# Compensate chkmsg with the doreloc family. 65 66CHKSRCS += $(G_MACHOBJS32:%32.o=$(SRCBASE)/uts/$(VAR_PLAT_sparc)/krtld/%.c) 67CHKSRCS += $(G_MACHOBJS64:%64.o=$(SRCBASE)/uts/$(VAR_PLAT_sparc)/krtld/%.c) 68 69pics/%32.o: \ 70 $(SRCBASE)/uts/$(VAR_PLAT_sparc)/krtld/%.c 71 $(COMPILE.c) -o $@ $(ELFTARGET32) $< 72 $(POST_PROCESS_O) 73 74pics/%64.o: \ 75 $(SRCBASE)/uts/$(VAR_PLAT_sparc)/krtld/%.c 76 $(COMPILE.c) -o $@ $(ELFTARGET64) -D_ELF64 $< 77 $(POST_PROCESS_O) 78