Makefile revision 7c478bd95313f5f23a4c958a745db2134aa03244
824N/A#
824N/A# CDDL HEADER START
824N/A#
824N/A# The contents of this file are subject to the terms of the
824N/A# Common Development and Distribution License, Version 1.0 only
824N/A# (the "License"). You may not use this file except in compliance
824N/A# with the License.
824N/A#
824N/A# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
824N/A# or http://www.opensolaris.org/os/licensing.
824N/A# See the License for the specific language governing permissions
824N/A# and limitations under the License.
824N/A#
824N/A# When distributing Covered Code, include this CDDL HEADER in each
824N/A# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
824N/A# If applicable, add the following below this CDDL HEADER, with the
824N/A# fields enclosed by brackets "[]" replaced with your own identifying
824N/A# information: Portions Copyright [yyyy] [name of copyright owner]
824N/A#
824N/A# CDDL HEADER END
824N/A#
824N/A#
824N/A# Copyright 2004 Sun Microsystems, Inc. All rights reserved.
824N/A# Use is subject to license terms.
824N/A#
824N/A#ident "%Z%%M% %I% %E% SMI"
824N/A#
824N/A# cmd/fs.d/cachefs/Makefile
824N/A#
824N/A
824N/ASUBDIRS= common \
824N/A cfsadmin \
824N/A cfsfstype \
824N/A cfstagchk \
824N/A fsck \
824N/A mount \
824N/A umount \
824N/A cachefslog \
824N/A cachefswssize \
824N/A cachefsstat \
824N/A cachefspack \
824N/A mdbug \
824N/A cfsd \
824N/A dfshares \
824N/A share \
824N/A unshare
824N/A
824N/A# MANIFESTS
824N/A# METHODS
824N/A
824N/A# Zip Stuff
824N/A#SUBDIRS += cfscowchk \
824N/A# cfscowchk \
824N/A# cfscvtmnt \
824N/A# cfslu \
824N/A# cfspin \
824N/A# cfsunpin
824N/A
824N/Aall := TARGET= all
824N/Ainstall := TARGET= install
824N/Aclean := TARGET= clean
824N/Aclobber := TARGET= clobber
824N/Alint := TARGET= lint
824N/A
824N/A# include Makefile.cmd and Makefile.targ for _msg target
824N/Ainclude ../../Makefile.cmd
824N/A
824N/APOFILE= cachefs.po
824N/AGREP= grep
824N/ASED= sed
824N/A
824N/A.KEEP_STATE:
824N/A
824N/Aall clean clobber lint: $(SUBDIRS)
824N/A
824N/Ainstall: $(SUBDIRS) $(ROOTMANIFEST) $(ROOTSVCMETHOD)
824N/A
824N/A$(SUBDIRS): FRC
824N/A @cd $@; pwd; $(MAKE) $(TARGET)
824N/A
824N/Acheck: $(CHKMANIFEST)
824N/A
824N/Acatalog: $(POFILE)
824N/A
824N/A$(POFILE):
824N/A $(RM) messages.po
824N/A $(XGETTEXT) $(XGETFLAGS) `$(GREP) -l gettext */*.[ch]`
824N/A $(SED) "/^domain/d" < messages.po > $@
824N/A $(RM) messages.po
824N/A
824N/Alocal_clobber:
824N/A $(RM) $(CLOBBERFILES)
824N/A
824N/AFRC:
824N/A
824N/Ainclude ../../Makefile.targ
824N/A