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