Makefile revision 0e42dee69ed771bf604dd1789fca9d77b5bbe302
7189N/A#
7189N/A# CDDL HEADER START
7189N/A#
7189N/A# The contents of this file are subject to the terms of the
7189N/A# Common Development and Distribution License (the "License").
7189N/A# You may not use this file except in compliance with the License.
7189N/A#
7189N/A# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
7189N/A# or http://www.opensolaris.org/os/licensing.
7189N/A# See the License for the specific language governing permissions
7189N/A# and limitations under the License.
7189N/A#
7189N/A# When distributing Covered Code, include this CDDL HEADER in each
7189N/A# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
7189N/A# If applicable, add the following below this CDDL HEADER, with the
7189N/A# fields enclosed by brackets "[]" replaced with your own identifying
7189N/A# information: Portions Copyright [yyyy] [name of copyright owner]
7189N/A#
7189N/A# CDDL HEADER END
7189N/A#
7189N/A#
7189N/A# Copyright 2006 Sun Microsystems, Inc. All rights reserved.
7189N/A# Use is subject to license terms.
7189N/A#
7189N/A#ident "%Z%%M% %I% %E% SMI"
7189N/A#
7189N/A# /usr/src/cmd/lib/fs/hsfs is the directory of all ufs specific commands
7189N/A# whose executable reside in $(INSDIR1) and $(INSDIR2).
7189N/A#
7189N/A
7189N/ASUBDIR1= fstyp mkproto labelit ident
7189N/ASUBDIR2= mount
7189N/ASUBDIRS= $(SUBDIR1) $(SUBDIR2)
7189N/A
7189N/Aall:= TARGET= all
7189N/Ainstall:= TARGET= install
7189N/Aclean:= TARGET= clean
7189N/Aclobber:= TARGET= clobber
7189N/Alint:= TARGET= lint
7189N/Acatalog:= TARGET= catalog
7189N/A
7189N/A# for messaging catalog
7189N/A#
7189N/APOFILE= hsfs.po
7189N/APOFILES= $(SUBDIR2:%=%/%.po)
7189N/A
7189N/A
7189N/A.KEEP_STATE:
7189N/A
7189N/A.PARALLEL: $(SUBDIRS)
7189N/A
7189N/Aall: $(SUBDIRS)
7189N/A
7189N/Acatalog: $(SUBDIR2)
7189N/A $(RM) $(POFILE)
7189N/A cat $(POFILES) > $(POFILE)
7189N/A
7189N/Ainstall clean clobber lint: $(SUBDIRS)
7189N/A
7189N/A$(SUBDIRS): FRC
7189N/A @cd $@; pwd; $(MAKE) $(MFLAGS) $(TARGET)
7189N/A
7189N/AFRC:
7189N/A