2852N/A#
2852N/A# CDDL HEADER START
2852N/A#
2852N/A# The contents of this file are subject to the terms of the
2852N/A# Common Development and Distribution License (the "License").
2852N/A# You may not use this file except in compliance with the License.
2852N/A#
2852N/A# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
2852N/A# or http://www.opensolaris.org/os/licensing.
2852N/A# See the License for the specific language governing permissions
2852N/A# and limitations under the License.
2852N/A#
2852N/A# When distributing Covered Code, include this CDDL HEADER in each
2852N/A# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
2852N/A# If applicable, add the following below this CDDL HEADER, with the
2852N/A# fields enclosed by brackets "[]" replaced with your own identifying
2852N/A# information: Portions Copyright [yyyy] [name of copyright owner]
2852N/A#
2852N/A# CDDL HEADER END
2852N/A#
2852N/A#
3158N/A# Copyright 2006 Sun Microsystems, Inc. All rights reserved.
2852N/A# Use is subject to license terms.
2852N/A#
2852N/A# ident "%Z%%M% %I% %E% SMI"
2852N/A#
2852N/A
2852N/Ainclude ../Makefile.lib
2852N/A
2852N/ASUBDIRS = $(MACH)
3234N/A$(BUILD64)SUBDIRS += $(MACH64)
2852N/A
2852N/A# conditional assignments
2852N/Aall := TARGET= all
2852N/Ainstall := TARGET= install
2852N/Aclean := TARGET= clean
2852N/Aclobber := TARGET= clobber
2852N/Alint := TARGET= lint
2852N/Atest := TARGET= test
2852N/A
2852N/A# definitions for install_h target
2852N/AHDRS= libnvpair.h
2852N/AROOTHDRDIR= $(ROOT)/usr/include
2852N/AROOTHDRS= $(HDRS:%=$(ROOTHDRDIR)/%)
2852N/ACHECKHDRS= $(HDRS:%.h=%.check)
2852N/A
2852N/A.KEEP_STATE:
2852N/A
2852N/Aall install clean clobber lint: $(SUBDIRS)
2852N/A
2852N/A# install rule for install_h target
2852N/A
2852N/A$(ROOTHDRDIR)/%: %
2852N/A $(INS.file)
2852N/A
2852N/Ainstall_h: $(ROOTHDRS)
2986N/A
2852N/Acheck: $(CHECKHDRS)
2986N/A
2852N/A$(SUBDIRS): FRC
2852N/A @cd $@; pwd; $(MAKE) $(TARGET)
2852N/A
3158N/AFRC:
3158N/A
3158N/A