Makefile revision 7014882c6a3672fd0e5d60200af8643ae53c5928
606N/A#
606N/A# CDDL HEADER START
1088N/A#
606N/A# The contents of this file are subject to the terms of the
1088N/A# Common Development and Distribution License (the "License").
606N/A# You may not use this file except in compliance with the License.
606N/A#
919N/A# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
919N/A# or http://www.opensolaris.org/os/licensing.
919N/A# See the License for the specific language governing permissions
919N/A# and limitations under the License.
919N/A#
919N/A# When distributing Covered Code, include this CDDL HEADER in each
919N/A# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
919N/A# If applicable, add the following below this CDDL HEADER, with the
919N/A# fields enclosed by brackets "[]" replaced with your own identifying
919N/A# information: Portions Copyright [yyyy] [name of copyright owner]
919N/A#
919N/A# CDDL HEADER END
919N/A#
919N/A# Copyright 2009 Sun Microsystems, Inc. All rights reserved.
919N/A# Use is subject to license terms.
919N/A#
919N/A# cmd/fs.d/ufs/quotaon/Makefile
606N/A
606N/AFSTYPE= ufs
606N/ALIBPROG= quotaon
606N/AQUOTAOFF= quotaoff
606N/AATTMK= $(LIBPROG)
606N/A
606N/A#
851N/A# Note that no links are made from the rc[S0-3].d directories for this rc
606N/A# script. The normal way to ship this is completely disabled. The process
911N/A# for enabling this script is described in the "Routine System Administration
911N/A# Guide" (as of this time).
911N/A#
911N/AINIT_SCRIPT= ufs_quota
606N/AROOTINIT_D= $(ROOTETC)/init.d
606N/AROOTINIT_SCRIPT=$(ROOTINIT_D)/$(INIT_SCRIPT)
606N/A
606N/AOTHERINSTALL= $(ROOTLIBFSTYPE)/$(QUOTAOFF) \
606N/A $(ROOTUSRSBIN)/$(LIBPROG) $(ROOTUSRSBIN)/$(QUOTAOFF) \
606N/A $(ROOTINIT_SCRIPT)
606N/ALINKVALUEON= ../lib/fs/$(FSTYPE)/$(LIBPROG)
606N/ALINKVALUEOFF= ../lib/fs/$(FSTYPE)/$(QUOTAOFF)
606N/A
606N/Ainclude ../../Makefile.fstype
606N/A
606N/A$(ROOTINIT_SCRIPT) := FILEMODE = 0744
606N/A
1097N/ACPPFLAGS += -D_LARGEFILE64_SOURCE
606N/ACERRWARN += -_gcc=-Wno-unused-variable
1097N/ACERRWARN += -_gcc=-Wno-unused-function
606N/A
1088N/Alint: lint_PROG
606N/A
910N/A$(ROOTLIBFSTYPE)/$(QUOTAOFF): $(ROOTLIBFSTYPE)/$(LIBPROG)
910N/A -$(RM) $@; $(LN) $(ROOTLIBFSTYPE)/$(LIBPROG) $@
910N/A
606N/A$(ROOTUSRSBIN)/$(LIBPROG):
606N/A -$(RM) $@; $(SYMLINK) $(LINKVALUEON) $@
910N/A
606N/A$(ROOTUSRSBIN)/$(QUOTAOFF):
606N/A -$(RM) $@; $(SYMLINK) $(LINKVALUEOFF) $@
$(ROOTINIT_D)/% : %
$(INS.file)