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