xref: /titanic_41/usr/src/lib/libraidcfg/Makefile (revision 711890bc9379ceea66272dc8d4981812224ea86e)
1*711890bcSjc156560#
2*711890bcSjc156560# CDDL HEADER START
3*711890bcSjc156560#
4*711890bcSjc156560# The contents of this file are subject to the terms of the
5*711890bcSjc156560# Common Development and Distribution License (the "License").
6*711890bcSjc156560# You may not use this file except in compliance with the License.
7*711890bcSjc156560#
8*711890bcSjc156560# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9*711890bcSjc156560# or http://www.opensolaris.org/os/licensing.
10*711890bcSjc156560# See the License for the specific language governing permissions
11*711890bcSjc156560# and limitations under the License.
12*711890bcSjc156560#
13*711890bcSjc156560# When distributing Covered Code, include this CDDL HEADER in each
14*711890bcSjc156560# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15*711890bcSjc156560# If applicable, add the following below this CDDL HEADER, with the
16*711890bcSjc156560# fields enclosed by brackets "[]" replaced with your own identifying
17*711890bcSjc156560# information: Portions Copyright [yyyy] [name of copyright owner]
18*711890bcSjc156560#
19*711890bcSjc156560# CDDL HEADER END
20*711890bcSjc156560#
21*711890bcSjc156560
22*711890bcSjc156560#
23*711890bcSjc156560# Copyright 2007 Sun Microsystems, Inc.  All rights reserved.
24*711890bcSjc156560# Use is subject to license terms.
25*711890bcSjc156560#
26*711890bcSjc156560#pragma ident	"%Z%%M%	%I%	%E% SMI"
27*711890bcSjc156560#
28*711890bcSjc156560# lib/libraidcfg/Makefile
29*711890bcSjc156560#
30*711890bcSjc156560
31*711890bcSjc156560include $(SRC)/lib/Makefile.lib
32*711890bcSjc156560
33*711890bcSjc156560SUBDIRS =	$(MACH)
34*711890bcSjc156560$(BUILD64)SUBDIRS += $(MACH64)
35*711890bcSjc156560
36*711890bcSjc156560POFILE =	libraidcfg.po
37*711890bcSjc156560MSGSRCS :sh =	echo */*.c
38*711890bcSjc156560MSGFILES =	$(MSGSRCS:%.c=%.i)
39*711890bcSjc156560
40*711890bcSjc156560all :=		TARGET= all
41*711890bcSjc156560clean :=	TARGET= clean
42*711890bcSjc156560clobber :=	TARGET= clobber
43*711890bcSjc156560install :=	TARGET= install
44*711890bcSjc156560lint :=		TARGET= lint
45*711890bcSjc156560
46*711890bcSjc156560.KEEP_STATE:
47*711890bcSjc156560
48*711890bcSjc156560all clean clobber install lint: $(SUBDIRS)
49*711890bcSjc156560
50*711890bcSjc156560$(SUBDIRS):	FRC
51*711890bcSjc156560	@cd $@; pwd; $(MAKE) $(TARGET)
52*711890bcSjc156560
53*711890bcSjc156560_msg:	$(MSGDOMAINPOFILE)
54*711890bcSjc156560
55*711890bcSjc156560$(POFILE): $(MSGFILES)
56*711890bcSjc156560	$(BUILDPO.msgfiles)
57*711890bcSjc156560
58*711890bcSjc156560FRC:
59*711890bcSjc156560
60*711890bcSjc156560include $(SRC)/Makefile.msg.targ
61*711890bcSjc156560include $(SRC)/lib/Makefile.targ
62