Makefile revision c3aa2a379ea93f4fb5a64b8ddf9b1f93e9a8e84b
1220N/A#
1220N/A# CDDL HEADER START
1220N/A#
1220N/A# The contents of this file are subject to the terms of the
1220N/A# Common Development and Distribution License (the "License").
1220N/A# You may not use this file except in compliance with the License.
1220N/A#
1220N/A# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
1220N/A# or http://www.opensolaris.org/os/licensing.
1220N/A# See the License for the specific language governing permissions
1220N/A# and limitations under the License.
1220N/A#
1220N/A# When distributing Covered Code, include this CDDL HEADER in each
1220N/A# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
1220N/A# If applicable, add the following below this CDDL HEADER, with the
1220N/A# fields enclosed by brackets "[]" replaced with your own identifying
1220N/A# information: Portions Copyright [yyyy] [name of copyright owner]
1220N/A#
1220N/A# CDDL HEADER END
1220N/A#
1220N/A#
1220N/A# Copyright 2007 Sun Microsystems, Inc. All rights reserved.
1699N/A# Use is subject to license terms.
1220N/A#
1220N/A# ident "%Z%%M% %I% %E% SMI"
1220N/A#
1220N/A
1220N/Ainclude ../Makefile.lib
1220N/A
1220N/AHDRS= libzfs.h
1220N/A
1220N/AHDRDIR= common
1220N/A
1220N/ASUBDIRS= $(MACH)
1220N/A$(BUILD64)SUBDIRS += $(MACH64)
1258N/A
1220N/Aall := TARGET= all
1220N/Aclean := TARGET= clean
1220N/Aclobber := TARGET= clobber
1220N/Ainstall := TARGET= install
1220N/Alint := TARGET= lint
1220N/A
1220N/AMSGFILES = `$(GREP) -l gettext $(HDRDIR)/*.[ch]`
1220N/APOFILE = libzfs.po
1220N/A
1220N/A.KEEP_STATE:
1220N/A
1220N/Aall clean clobber install lint: $(SUBDIRS)
1220N/A
1220N/A$(POFILE): pofile_MSGFILES
1220N/A
1220N/Ainstall_h: $(ROOTHDRS)
1220N/A
1220N/Acheck: $(CHECKHDRS)
1220N/A
1220N/A_msg: $(MSGDOMAINPOFILE)
1220N/A
1220N/A$(SUBDIRS): FRC
1220N/A @cd $@; pwd; $(MAKE) $(TARGET)
1220N/A
1220N/AFRC:
1220N/A
1220N/Ainclude ../Makefile.targ
1220N/Ainclude ../../Makefile.msg.targ
1699N/A