338N/A#
338N/A# CDDL HEADER START
338N/A#
338N/A# The contents of this file are subject to the terms of the
338N/A# Common Development and Distribution License (the "License").
338N/A# You may not use this file except in compliance with the License.
338N/A#
338N/A# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
338N/A# or http://www.opensolaris.org/os/licensing.
338N/A# See the License for the specific language governing permissions
338N/A# and limitations under the License.
338N/A#
338N/A# When distributing Covered Code, include this CDDL HEADER in each
338N/A# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
338N/A# If applicable, add the following below this CDDL HEADER, with the
338N/A# fields enclosed by brackets "[]" replaced with your own identifying
338N/A# information: Portions Copyright [yyyy] [name of copyright owner]
338N/A#
873N/A# CDDL HEADER END
338N/A#
338N/A#
338N/A# Copyright 2009 Sun Microsystems, Inc. All rights reserved.
338N/A# Use is subject to license terms.
338N/A#
3231N/A# cmd/fs.d/ufs/quota/Makefile
6190N/A
338N/AFSTYPE= ufs
338N/ALIBPROG= quota
338N/AATTMK= $(LIBPROG)
338N/A
338N/AOTHERINSTALL= $(ROOTUSRSBIN)/$(LIBPROG)
6190N/ALINKVALUE= ../lib/fs/$(FSTYPE)/$(LIBPROG)
338N/A
4134N/Ainclude ../../Makefile.fstype
338N/A
338N/AOBJS= quota.o rquota_xdr.o replica.o
338N/ASRCS= $(OBJS:%.o=%.c)
338N/AXFILE= $(ROOT)/usr/include/rpcsvc/rquota.x
338N/ACPPFLAGS += -I $(ROOT)/usr/include/sys -D_LARGEFILE64_SOURCE
338N/ALDLIBS += -lnsl
338N/A
338N/ACERRWARN += -_gcc=-Wno-implicit-function-declaration
2095N/ACERRWARN += -_gcc=-Wno-unused-variable
2095N/ACERRWARN += -_gcc=-Wno-parentheses
2095N/A
2095N/AFILEMODE= 04555
2095N/A
338N/A$(LIBPROG): $(OBJS)
338N/A $(LINK.c) -o $@ $(OBJS) $(LDLIBS)
338N/A $(POST_PROCESS)
338N/A
338N/Alint: lint_PROG
338N/A
338N/Aclean:
338N/A $(RM) $(OBJS) rquota_xdr.c
338N/A
338N/A$(ROOTUSRSBIN)/$(LIBPROG):
338N/A -$(RM) $@; $(SYMLINK) $(LINKVALUE) $@
338N/A
338N/Arquota_xdr.c: $(XFILE)
338N/A $(RPCGEN) -c $(XFILE) -o $@
338N/A
338N/Areplica.o: ../../nfs/lib/replica.c
338N/A $(COMPILE.c) ../../nfs/lib/replica.c
338N/A