xref: /titanic_50/usr/src/cmd/fs.d/nfs/rp_basic/Makefile (revision 2f172c55ef76964744bc62b4500ece87f3089b4d)
1*2f172c55SRobert Thurlow#
2*2f172c55SRobert Thurlow# CDDL HEADER START
3*2f172c55SRobert Thurlow#
4*2f172c55SRobert Thurlow# The contents of this file are subject to the terms of the
5*2f172c55SRobert Thurlow# Common Development and Distribution License (the "License").
6*2f172c55SRobert Thurlow# You may not use this file except in compliance with the License.
7*2f172c55SRobert Thurlow#
8*2f172c55SRobert Thurlow# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9*2f172c55SRobert Thurlow# or http://www.opensolaris.org/os/licensing.
10*2f172c55SRobert Thurlow# See the License for the specific language governing permissions
11*2f172c55SRobert Thurlow# and limitations under the License.
12*2f172c55SRobert Thurlow#
13*2f172c55SRobert Thurlow# When distributing Covered Code, include this CDDL HEADER in each
14*2f172c55SRobert Thurlow# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15*2f172c55SRobert Thurlow# If applicable, add the following below this CDDL HEADER, with the
16*2f172c55SRobert Thurlow# fields enclosed by brackets "[]" replaced with your own identifying
17*2f172c55SRobert Thurlow# information: Portions Copyright [yyyy] [name of copyright owner]
18*2f172c55SRobert Thurlow#
19*2f172c55SRobert Thurlow# CDDL HEADER END
20*2f172c55SRobert Thurlow#
21*2f172c55SRobert Thurlow# Copyright 2009 Sun Microsystems, Inc.  All rights reserved.
22*2f172c55SRobert Thurlow# Use is subject to license terms.
23*2f172c55SRobert Thurlow#
24*2f172c55SRobert Thurlow
25*2f172c55SRobert Thurlowinclude $(SRC)/lib/Makefile.lib
26*2f172c55SRobert Thurlow
27*2f172c55SRobert ThurlowSUBDIRS =	$(MACH)
28*2f172c55SRobert Thurlow$(BUILD64)SUBDIRS += $(MACH64)
29*2f172c55SRobert Thurlow
30*2f172c55SRobert ThurlowMSGFILES = 	libnfs_basic.c
31*2f172c55SRobert ThurlowPOFILE  =	rp_basic.po
32*2f172c55SRobert Thurlow
33*2f172c55SRobert Thurlowall	:=	TARGET= all
34*2f172c55SRobert Thurlowclean	:=	TARGET= clean
35*2f172c55SRobert Thurlowclobber	:=	TARGET= clobber
36*2f172c55SRobert Thurlowinstall	:=	TARGET= install
37*2f172c55SRobert Thurlowlint	:=	TARGET= lint
38*2f172c55SRobert Thurlow
39*2f172c55SRobert Thurlow.KEEP_STATE:
40*2f172c55SRobert Thurlow
41*2f172c55SRobert Thurlowall clean clobber install lint:	$(SUBDIRS)
42*2f172c55SRobert Thurlow
43*2f172c55SRobert Thurlowcatalog: $(POFILE)
44*2f172c55SRobert Thurlow
45*2f172c55SRobert Thurlow$(POFILE): 	$(MSGFILES)
46*2f172c55SRobert Thurlow	$(BUILDPO.msgfiles)
47*2f172c55SRobert Thurlow
48*2f172c55SRobert Thurlow_msg:	$(MSGDOMAINPOFILE)
49*2f172c55SRobert Thurlow
50*2f172c55SRobert Thurlow$(SUBDIRS):	FRC
51*2f172c55SRobert Thurlow	@cd $@; pwd; $(MAKE) $(TARGET)
52*2f172c55SRobert Thurlow
53*2f172c55SRobert ThurlowFRC:
54*2f172c55SRobert Thurlow
55*2f172c55SRobert Thurlowinclude $(SRC)/lib/Makefile.targ
56*2f172c55SRobert Thurlowinclude $(SRC)/Makefile.msg.targ
57