17c478bd9Sstevel@tonic-gate#
27c478bd9Sstevel@tonic-gate# CDDL HEADER START
37c478bd9Sstevel@tonic-gate#
47c478bd9Sstevel@tonic-gate# The contents of this file are subject to the terms of the
5*5aefb655Srie# Common Development and Distribution License (the "License").
6*5aefb655Srie# You may not use this file except in compliance with the License.
77c478bd9Sstevel@tonic-gate#
87c478bd9Sstevel@tonic-gate# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
97c478bd9Sstevel@tonic-gate# or http://www.opensolaris.org/os/licensing.
107c478bd9Sstevel@tonic-gate# See the License for the specific language governing permissions
117c478bd9Sstevel@tonic-gate# and limitations under the License.
127c478bd9Sstevel@tonic-gate#
137c478bd9Sstevel@tonic-gate# When distributing Covered Code, include this CDDL HEADER in each
147c478bd9Sstevel@tonic-gate# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
157c478bd9Sstevel@tonic-gate# If applicable, add the following below this CDDL HEADER, with the
167c478bd9Sstevel@tonic-gate# fields enclosed by brackets "[]" replaced with your own identifying
177c478bd9Sstevel@tonic-gate# information: Portions Copyright [yyyy] [name of copyright owner]
187c478bd9Sstevel@tonic-gate#
197c478bd9Sstevel@tonic-gate# CDDL HEADER END
207c478bd9Sstevel@tonic-gate#
21*5aefb655Srie
227c478bd9Sstevel@tonic-gate#
23*5aefb655Srie# Copyright 2006 Sun Microsystems, Inc.  All rights reserved.
247c478bd9Sstevel@tonic-gate# Use is subject to license terms.
257c478bd9Sstevel@tonic-gate#
267c478bd9Sstevel@tonic-gate# ident	"%Z%%M%	%I%	%E% SMI"
277c478bd9Sstevel@tonic-gate#
287c478bd9Sstevel@tonic-gate
297c478bd9Sstevel@tonic-gateobjs/%.o \
307c478bd9Sstevel@tonic-gatepics/%.o:	%.c
317c478bd9Sstevel@tonic-gate		$(COMPILE.c) -o $@ $<
327c478bd9Sstevel@tonic-gate		$(POST_PROCESS_O)
337c478bd9Sstevel@tonic-gate
347c478bd9Sstevel@tonic-gateobjs/%64.o \
357c478bd9Sstevel@tonic-gatepics/%64.o:	../common/%.c
367c478bd9Sstevel@tonic-gate		$(COMPILE.c) -D_ELF64 -o $@ $<
377c478bd9Sstevel@tonic-gate		$(POST_PROCESS_O)
387c478bd9Sstevel@tonic-gate
397c478bd9Sstevel@tonic-gateobjs/%.o \
407c478bd9Sstevel@tonic-gatepics/%.o:	../misc/%.c
417c478bd9Sstevel@tonic-gate		$(COMPILE.c) -DELF -o $@ $<
427c478bd9Sstevel@tonic-gate		$(POST_PROCESS_O)
437c478bd9Sstevel@tonic-gate
447c478bd9Sstevel@tonic-gateobjs/%.o \
457c478bd9Sstevel@tonic-gatepics/%.o:	../common/%.c
467c478bd9Sstevel@tonic-gate		$(COMPILE.c) -o $@ $<
477c478bd9Sstevel@tonic-gate		$(POST_PROCESS_O)
487c478bd9Sstevel@tonic-gate
497c478bd9Sstevel@tonic-gateall:		$(BLTSRCS) .WAIT $(LIBS) $(LIBLINKS)
507c478bd9Sstevel@tonic-gate
517c478bd9Sstevel@tonic-gateinstall:	all .WAIT $(ROOTFS_LIBS64) $(ROOTFS_LINKS64) \
527c478bd9Sstevel@tonic-gate		$(ROOTFS_LINTLIB64)
537c478bd9Sstevel@tonic-gate
547c478bd9Sstevel@tonic-gatelint:		$(LINTLIB) $(LINTOUT32) $(LINTOUT64) $(SGSLINTOUT)
557c478bd9Sstevel@tonic-gate
567c478bd9Sstevel@tonic-gate$(VAR_POUND_2)lint :=		LIBTHREADFLAG=-lthread
577c478bd9Sstevel@tonic-gate
587c478bd9Sstevel@tonic-gate.PARALLEL:	$(LINTOUT32) $(LINTOUT64)
597c478bd9Sstevel@tonic-gate
607c478bd9Sstevel@tonic-gate
617c478bd9Sstevel@tonic-gatedelete:
627c478bd9Sstevel@tonic-gate		$(RM) $(DYNLIB)
637c478bd9Sstevel@tonic-gate
647c478bd9Sstevel@tonic-gate$(DYNLIB):	$(MAPFILES)
657c478bd9Sstevel@tonic-gate
667c478bd9Sstevel@tonic-gate$(LIBLINKS):
677c478bd9Sstevel@tonic-gate		$(RM) $(LIBLINKS)
687c478bd9Sstevel@tonic-gate		$(SYMLINK) $(DYNLIB) $(LIBLINKS)
697c478bd9Sstevel@tonic-gate
707c478bd9Sstevel@tonic-gate# include common library targets
717c478bd9Sstevel@tonic-gate#
727c478bd9Sstevel@tonic-gateinclude		$(SRC)/lib/Makefile.targ
737c478bd9Sstevel@tonic-gateinclude		$(SRC)/cmd/sgs/Makefile.targ
747c478bd9Sstevel@tonic-gate
757c478bd9Sstevel@tonic-gatexlate.c:	../common/xlate.m4
767c478bd9Sstevel@tonic-gate		$(M4) < ../common/xlate.m4 > xlate.c
777c478bd9Sstevel@tonic-gate
787c478bd9Sstevel@tonic-gatexlate64.c:	../common/xlate64.m4
797c478bd9Sstevel@tonic-gate		$(M4) < ../common/xlate64.m4 > xlate64.c
807c478bd9Sstevel@tonic-gate
817c478bd9Sstevel@tonic-gateobjs/msg.o \
827c478bd9Sstevel@tonic-gatepics/msg.o:	msg.c
837c478bd9Sstevel@tonic-gate
847c478bd9Sstevel@tonic-gateobjs/error.o \
857c478bd9Sstevel@tonic-gatepics/error.o:	msg.h
867c478bd9Sstevel@tonic-gate
877c478bd9Sstevel@tonic-gateobjs/ar.o \
887c478bd9Sstevel@tonic-gatepics/ar.o:	msg.h
897c478bd9Sstevel@tonic-gate
907c478bd9Sstevel@tonic-gateobjs/xlate.o \
917c478bd9Sstevel@tonic-gatepics/xlate.o:	xlate.c
927c478bd9Sstevel@tonic-gate
937c478bd9Sstevel@tonic-gate
947c478bd9Sstevel@tonic-gate# Derived source and header files (messaging).  Make sure that the sgsmsg
957c478bd9Sstevel@tonic-gate# command is constructed - libelf might not be built with the whole sgs.
967c478bd9Sstevel@tonic-gate
977c478bd9Sstevel@tonic-gatecatalog:	$(BLTMESG)
987c478bd9Sstevel@tonic-gate
997c478bd9Sstevel@tonic-gatechkmsg:		$(LIBSRCS)
1007c478bd9Sstevel@tonic-gate		sh $(CHKMSG) $(CHKMSGFLAGS) $(LIBSRCS)
1017c478bd9Sstevel@tonic-gate
1027c478bd9Sstevel@tonic-gate$(BLTDEFS) + \
1037c478bd9Sstevel@tonic-gate$(BLTDATA):	$(SGSMSG) $(SGSMSGTARG)
1047c478bd9Sstevel@tonic-gate		$(SGSMSG) $(SGSMSGFLAGS2) $(SGSMSGTARG)
1057c478bd9Sstevel@tonic-gate
1067c478bd9Sstevel@tonic-gate$(BLTMESG):	$(SGSMSG) $(SGSMSGALL) xlate.c xlate64.c
1077c478bd9Sstevel@tonic-gate		$(SGSMSG) $(SGSMSGFLAGS1) $(SGSMSGALL)
1087c478bd9Sstevel@tonic-gate
1097c478bd9Sstevel@tonic-gate$(SGSMSG):	FRC
1107c478bd9Sstevel@tonic-gate		@ cd $(SGSTOOLS)/$(MACH); pwd; $(MAKE) catalog
1117c478bd9Sstevel@tonic-gate		@ pwd
1127c478bd9Sstevel@tonic-gate
1137c478bd9Sstevel@tonic-gate#
1147c478bd9Sstevel@tonic-gate# 64-bit overrides
1157c478bd9Sstevel@tonic-gate#
1167c478bd9Sstevel@tonic-gateinclude ../../Makefile.sub.64
1177c478bd9Sstevel@tonic-gate
1187c478bd9Sstevel@tonic-gateFRC:
119