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