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