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