1*0Sstevel@tonic-gate# 2*0Sstevel@tonic-gate# Copyright 2004 Sun Microsystems, Inc. All rights reserved. 3*0Sstevel@tonic-gate# Use is subject to license terms. 4*0Sstevel@tonic-gate# 5*0Sstevel@tonic-gate#ident "%Z%%M% %I% %E% SMI" 6*0Sstevel@tonic-gate 7*0Sstevel@tonic-gateinclude ../../Makefile.tools 8*0Sstevel@tonic-gate 9*0Sstevel@tonic-gateSUBDIRS = $(MACH) 10*0Sstevel@tonic-gate 11*0Sstevel@tonic-gateall := TARGET= all 12*0Sstevel@tonic-gateinstall := TARGET= install 13*0Sstevel@tonic-gateclean := TARGET= clean 14*0Sstevel@tonic-gateclobber := TARGET= clobber 15*0Sstevel@tonic-gatelint := TARGET= lint 16*0Sstevel@tonic-gate 17*0Sstevel@tonic-gate.KEEP_STATE: 18*0Sstevel@tonic-gate 19*0Sstevel@tonic-gateinstall all clean clobber: $(SUBDIRS) 20*0Sstevel@tonic-gate 21*0Sstevel@tonic-gatelint: 22*0Sstevel@tonic-gate 23*0Sstevel@tonic-gate$(SUBDIRS): FRC 24*0Sstevel@tonic-gate @cd $@; pwd; $(MAKE) $(TARGET) 25*0Sstevel@tonic-gate 26*0Sstevel@tonic-gateFRC: 27