xref: /titanic_41/usr/src/cmd/lvm/rpc.metad/Makefile (revision 355b4669e025ff377602b6fc7caaf30dbc218371)
1#
2# CDDL HEADER START
3#
4# The contents of this file are subject to the terms of the
5# Common Development and Distribution License, Version 1.0 only
6# (the "License").  You may not use this file except in compliance
7# with the License.
8#
9# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
10# or http://www.opensolaris.org/os/licensing.
11# See the License for the specific language governing permissions
12# and limitations under the License.
13#
14# When distributing Covered Code, include this CDDL HEADER in each
15# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
16# If applicable, add the following below this CDDL HEADER, with the
17# fields enclosed by brackets "[]" replaced with your own identifying
18# information: Portions Copyright [yyyy] [name of copyright owner]
19#
20# CDDL HEADER END
21#
22#
23# Copyright 2004 Sun Microsystems, Inc.  All rights reserved.
24# Use is subject to license terms.
25#
26#ident	"%Z%%M%	%I%	%E% SMI"
27#
28# Makefile for logical volume management
29#
30# cmd/lvm/rpc.metad/Makefile
31
32PROG= rpc.metad
33MANIFEST=	meta.xml
34
35include ../../Makefile.cmd
36include ../Makefile.lvm
37
38ROOTMANIFESTDIR=	$(ROOTSVCNETWORKRPC)
39$(ROOTMANIFEST)		:= FILEMODE= 444
40
41SUBDIRS=        $(MACH)
42
43SRCS=	metad_freeresult.c metad_init.c metad_svc_subr.c
44
45POFILES= $(SRCS:%.c=%.po)
46POFILE= rpc.metadp.po
47
48all     :=      TARGET = all
49install :=      TARGET = install
50clean   :=      TARGET = clean
51clobber :=      TARGET = clobber
52lint    :=      TARGET = lint
53
54.KEEP_STATE:
55
56all:    $(SUBDIRS)
57
58catalog:	$(POFILE)
59
60$(POFILE): $(POFILES)
61	$(RM) $@
62	cat $(POFILES) > $(POFILE)
63
64clean:	$(SUBDIRS)
65	$(RM) metad_svc.c *.po
66
67lint:     $(SUBDIRS)
68
69install:        $(SUBDIRS) $(ROOTMANIFEST)
70	-$(RM)  $(ROOTPROG)
71
72check:	$(CHKMANIFEST)
73
74$(SUBDIRS):     FRC
75	@cd $@; pwd; $(MAKE) $(TARGET)
76
77FRC:
78
79include ../../Makefile.targ
80