xref: /onnv-gate/usr/src/lib/raidcfg_plugins/Makefile (revision 3457:95f0a08d05e5)
1*3457Sjc156560#
2*3457Sjc156560# CDDL HEADER START
3*3457Sjc156560#
4*3457Sjc156560# The contents of this file are subject to the terms of the
5*3457Sjc156560# Common Development and Distribution License (the "License").
6*3457Sjc156560# You may not use this file except in compliance with the License.
7*3457Sjc156560#
8*3457Sjc156560# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9*3457Sjc156560# or http://www.opensolaris.org/os/licensing.
10*3457Sjc156560# See the License for the specific language governing permissions
11*3457Sjc156560# and limitations under the License.
12*3457Sjc156560#
13*3457Sjc156560# When distributing Covered Code, include this CDDL HEADER in each
14*3457Sjc156560# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15*3457Sjc156560# If applicable, add the following below this CDDL HEADER, with the
16*3457Sjc156560# fields enclosed by brackets "[]" replaced with your own identifying
17*3457Sjc156560# information: Portions Copyright [yyyy] [name of copyright owner]
18*3457Sjc156560#
19*3457Sjc156560# CDDL HEADER END
20*3457Sjc156560#
21*3457Sjc156560#
22*3457Sjc156560# Copyright 2007 Sun Microsystems, Inc.  All rights reserved.
23*3457Sjc156560# Use is subject to license terms.
24*3457Sjc156560#
25*3457Sjc156560# ident	"%Z%%M%	%I%	%E% SMI"
26*3457Sjc156560#
27*3457Sjc156560# lib/raidcfg_plugins/Makefile
28*3457Sjc156560#
29*3457Sjc156560
30*3457Sjc156560include $(SRC)/Makefile.master
31*3457Sjc156560
32*3457Sjc156560CLOSED_PLUGIN = $(CLOSED)/lib/raidcfg_plugins/
33*3457Sjc156560
34*3457Sjc156560$(CLOSED_BUILD)COMMON_SUBDIRS += $(CLOSED_PLUGIN)/mpt
35*3457Sjc156560
36*3457Sjc156560SUBDIRS= $(COMMON_SUBDIRS) $($(MACH)_SUBDIRS)
37*3457Sjc156560
38*3457Sjc156560all:= 		TARGET= all
39*3457Sjc156560install:=	TARGET= install
40*3457Sjc156560clean:=		TARGET= clean
41*3457Sjc156560clobber:=	TARGET= clobber
42*3457Sjc156560lint:=		TARGET= lint
43*3457Sjc156560_msg:=		TARGET= _msg
44*3457Sjc156560
45*3457Sjc156560.KEEP_STATE:
46*3457Sjc156560
47*3457Sjc156560all clean clobber lint install _msg: $(SUBDIRS)
48*3457Sjc156560
49*3457Sjc156560$(SUBDIRS): FRC
50*3457Sjc156560	@cd $@; pwd; $(MAKE) $(TARGET)
51*3457Sjc156560
52*3457Sjc156560FRC:
53