xref: /titanic_41/usr/src/cmd/fs.d/ufs/quota/Makefile (revision 03831d35f7499c87d51205817c93e9a8d42c4bae)
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#ident	"%Z%%M%	%I%	%E% SMI"
24#
25# Copyright (c) 1989,1996 by Sun Microsystems, Inc.
26# All rights reserved.
27#
28# cmd/fs.d/ufs/quota/Makefile
29
30FSTYPE=		ufs
31LIBPROG=	quota
32ATTMK=		$(LIBPROG)
33
34OTHERINSTALL=	$(ROOTUSRSBIN)/$(LIBPROG)
35LINKVALUE=	../lib/fs/$(FSTYPE)/$(LIBPROG)
36
37include		../../Makefile.fstype
38
39OBJS=		quota.o rquota_xdr.o replica.o
40SRCS=		$(OBJS:%.o=%.c)
41XFILE=		$(ROOT)/usr/include/rpcsvc/rquota.x
42CPPFLAGS +=	-D_LARGEFILE64_SOURCE
43LDLIBS +=		-lnsl
44
45FILEMODE= 04555
46OWNER= root
47GROUP= bin
48
49$(LIBPROG):	$(OBJS)
50		$(LINK.c) -o $@ $(OBJS) $(LDLIBS)
51		$(POST_PROCESS)
52
53lint:		lint_PROG
54
55clean:
56		$(RM) $(OBJS) rquota_xdr.c
57
58$(ROOTUSRSBIN)/$(LIBPROG):
59		-$(RM) $@; $(SYMLINK) $(LINKVALUE) $@
60
61rquota_xdr.c:	$(XFILE)
62		$(RPCGEN) -c $(XFILE) -o $@
63
64replica.o:	../../nfs/lib/replica.c
65		$(COMPILE.c) ../../nfs/lib/replica.c
66