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