Makefile revision bfa62c284402a2e7ee6a349df0ef8d1aa2e908e8
74fe172698ba936102e120dae998c9ebd09cfbdfvboxsync#
74fe172698ba936102e120dae998c9ebd09cfbdfvboxsync# CDDL HEADER START
74fe172698ba936102e120dae998c9ebd09cfbdfvboxsync#
74fe172698ba936102e120dae998c9ebd09cfbdfvboxsync# The contents of this file are subject to the terms of the
74fe172698ba936102e120dae998c9ebd09cfbdfvboxsync# Common Development and Distribution License (the "License").
74fe172698ba936102e120dae998c9ebd09cfbdfvboxsync# You may not use this file except in compliance with the License.
74fe172698ba936102e120dae998c9ebd09cfbdfvboxsync#
74fe172698ba936102e120dae998c9ebd09cfbdfvboxsync# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
74fe172698ba936102e120dae998c9ebd09cfbdfvboxsync# or http://www.opensolaris.org/os/licensing.
74fe172698ba936102e120dae998c9ebd09cfbdfvboxsync# See the License for the specific language governing permissions
74fe172698ba936102e120dae998c9ebd09cfbdfvboxsync# and limitations under the License.
74fe172698ba936102e120dae998c9ebd09cfbdfvboxsync#
74fe172698ba936102e120dae998c9ebd09cfbdfvboxsync# When distributing Covered Code, include this CDDL HEADER in each
74fe172698ba936102e120dae998c9ebd09cfbdfvboxsync# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
74fe172698ba936102e120dae998c9ebd09cfbdfvboxsync# If applicable, add the following below this CDDL HEADER, with the
74fe172698ba936102e120dae998c9ebd09cfbdfvboxsync# fields enclosed by brackets "[]" replaced with your own identifying
74fe172698ba936102e120dae998c9ebd09cfbdfvboxsync# information: Portions Copyright [yyyy] [name of copyright owner]
74fe172698ba936102e120dae998c9ebd09cfbdfvboxsync#
74fe172698ba936102e120dae998c9ebd09cfbdfvboxsync# CDDL HEADER END
74fe172698ba936102e120dae998c9ebd09cfbdfvboxsync#
74fe172698ba936102e120dae998c9ebd09cfbdfvboxsync#
74fe172698ba936102e120dae998c9ebd09cfbdfvboxsync# Copyright 2008 Sun Microsystems, Inc. All rights reserved.
74fe172698ba936102e120dae998c9ebd09cfbdfvboxsync# Use is subject to license terms.
74fe172698ba936102e120dae998c9ebd09cfbdfvboxsync#
74fe172698ba936102e120dae998c9ebd09cfbdfvboxsync# cmd/fs.d/ufs/quota/Makefile
74fe172698ba936102e120dae998c9ebd09cfbdfvboxsync
74fe172698ba936102e120dae998c9ebd09cfbdfvboxsyncFSTYPE= ufs
74fe172698ba936102e120dae998c9ebd09cfbdfvboxsyncLIBPROG= quota
74fe172698ba936102e120dae998c9ebd09cfbdfvboxsyncATTMK= $(LIBPROG)
74fe172698ba936102e120dae998c9ebd09cfbdfvboxsync
74fe172698ba936102e120dae998c9ebd09cfbdfvboxsyncOTHERINSTALL= $(ROOTUSRSBIN)/$(LIBPROG)
74fe172698ba936102e120dae998c9ebd09cfbdfvboxsyncLINKVALUE= ../lib/fs/$(FSTYPE)/$(LIBPROG)
74fe172698ba936102e120dae998c9ebd09cfbdfvboxsync
74fe172698ba936102e120dae998c9ebd09cfbdfvboxsyncinclude ../../Makefile.fstype
74fe172698ba936102e120dae998c9ebd09cfbdfvboxsync
74fe172698ba936102e120dae998c9ebd09cfbdfvboxsyncOBJS= quota.o rquota_xdr.o replica.o
74fe172698ba936102e120dae998c9ebd09cfbdfvboxsyncSRCS= $(OBJS:%.o=%.c)
74fe172698ba936102e120dae998c9ebd09cfbdfvboxsyncXFILE= $(ROOT)/usr/include/rpcsvc/rquota.x
74fe172698ba936102e120dae998c9ebd09cfbdfvboxsyncCPPFLAGS += -I $(ROOT)/usr/include/sys -D_LARGEFILE64_SOURCE
74fe172698ba936102e120dae998c9ebd09cfbdfvboxsyncLDLIBS += -lnsl
74fe172698ba936102e120dae998c9ebd09cfbdfvboxsync
74fe172698ba936102e120dae998c9ebd09cfbdfvboxsyncFILEMODE= 04555
74fe172698ba936102e120dae998c9ebd09cfbdfvboxsyncOWNER= root
74fe172698ba936102e120dae998c9ebd09cfbdfvboxsyncGROUP= bin
74fe172698ba936102e120dae998c9ebd09cfbdfvboxsync
74fe172698ba936102e120dae998c9ebd09cfbdfvboxsync$(LIBPROG): $(OBJS)
74fe172698ba936102e120dae998c9ebd09cfbdfvboxsync $(LINK.c) -o $@ $(OBJS) $(LDLIBS)
74fe172698ba936102e120dae998c9ebd09cfbdfvboxsync $(POST_PROCESS)
74fe172698ba936102e120dae998c9ebd09cfbdfvboxsync
74fe172698ba936102e120dae998c9ebd09cfbdfvboxsynclint: lint_PROG
74fe172698ba936102e120dae998c9ebd09cfbdfvboxsync
74fe172698ba936102e120dae998c9ebd09cfbdfvboxsyncclean:
74fe172698ba936102e120dae998c9ebd09cfbdfvboxsync $(RM) $(OBJS) rquota_xdr.c
74fe172698ba936102e120dae998c9ebd09cfbdfvboxsync
74fe172698ba936102e120dae998c9ebd09cfbdfvboxsync$(ROOTUSRSBIN)/$(LIBPROG):
74fe172698ba936102e120dae998c9ebd09cfbdfvboxsync -$(RM) $@; $(SYMLINK) $(LINKVALUE) $@
74fe172698ba936102e120dae998c9ebd09cfbdfvboxsync
74fe172698ba936102e120dae998c9ebd09cfbdfvboxsyncrquota_xdr.c: $(XFILE)
74fe172698ba936102e120dae998c9ebd09cfbdfvboxsync $(RPCGEN) -c $(XFILE) -o $@
74fe172698ba936102e120dae998c9ebd09cfbdfvboxsync
74fe172698ba936102e120dae998c9ebd09cfbdfvboxsyncreplica.o: ../../nfs/lib/replica.c
74fe172698ba936102e120dae998c9ebd09cfbdfvboxsync $(COMPILE.c) ../../nfs/lib/replica.c
74fe172698ba936102e120dae998c9ebd09cfbdfvboxsync