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