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