1*cc31cba9SRichard Lowe# 2*cc31cba9SRichard Lowe# CDDL HEADER START 3*cc31cba9SRichard Lowe# 4*cc31cba9SRichard Lowe# The contents of this file are subject to the terms of the 5*cc31cba9SRichard Lowe# Common Development and Distribution License, Version 1.0 only 6*cc31cba9SRichard Lowe# (the "License"). You may not use this file except in compliance 7*cc31cba9SRichard Lowe# with the License. 8*cc31cba9SRichard Lowe# 9*cc31cba9SRichard Lowe# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 10*cc31cba9SRichard Lowe# or http://www.opensolaris.org/os/licensing. 11*cc31cba9SRichard Lowe# See the License for the specific language governing permissions 12*cc31cba9SRichard Lowe# and limitations under the License. 13*cc31cba9SRichard Lowe# 14*cc31cba9SRichard Lowe# When distributing Covered Code, include this CDDL HEADER in each 15*cc31cba9SRichard Lowe# file and include the License file at usr/src/OPENSOLARIS.LICENSE. 16*cc31cba9SRichard Lowe# If applicable, add the following below this CDDL HEADER, with the 17*cc31cba9SRichard Lowe# fields enclosed by brackets "[]" replaced with your own identifying 18*cc31cba9SRichard Lowe# information: Portions Copyright [yyyy] [name of copyright owner] 19*cc31cba9SRichard Lowe# 20*cc31cba9SRichard Lowe# CDDL HEADER END 21*cc31cba9SRichard Lowe# 22*cc31cba9SRichard Lowe# 23*cc31cba9SRichard Lowe# Copyright 2004 Sun Microsystems, Inc. All rights reserved. 24*cc31cba9SRichard Lowe# Use is subject to license terms. 25*cc31cba9SRichard Lowe# 26*cc31cba9SRichard Lowe 27*cc31cba9SRichard Loweinclude ../Makefile.lib 28*cc31cba9SRichard Lowe 29*cc31cba9SRichard LoweSUBDIRS = $(MACH) 30*cc31cba9SRichard Lowe$(BUILD64)SUBDIRS += $(MACH64) 31*cc31cba9SRichard Lowe 32*cc31cba9SRichard Loweall := TARGET= all 33*cc31cba9SRichard Loweinstall := TARGET= install 34*cc31cba9SRichard Loweclean := TARGET= clean 35*cc31cba9SRichard Loweclobber := TARGET= clobber 36*cc31cba9SRichard Lowelint := TARGET= lint 37*cc31cba9SRichard Lowe 38*cc31cba9SRichard Lowe.KEEP_STATE: 39*cc31cba9SRichard Lowe 40*cc31cba9SRichard Loweall install clean clobber lint: $(SUBDIRS) 41*cc31cba9SRichard Lowe 42*cc31cba9SRichard Lowe$(SUBDIRS): FRC 43*cc31cba9SRichard Lowe @cd $@; pwd; $(MAKE) $(TARGET) 44*cc31cba9SRichard Lowe 45*cc31cba9SRichard LoweFRC: 46