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