1*24db4641Seschrock# 2*24db4641Seschrock# CDDL HEADER START 3*24db4641Seschrock# 4*24db4641Seschrock# The contents of this file are subject to the terms of the 5*24db4641Seschrock# Common Development and Distribution License (the "License"). 6*24db4641Seschrock# You may not use this file except in compliance with the License. 7*24db4641Seschrock# 8*24db4641Seschrock# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 9*24db4641Seschrock# or http://www.opensolaris.org/os/licensing. 10*24db4641Seschrock# See the License for the specific language governing permissions 11*24db4641Seschrock# and limitations under the License. 12*24db4641Seschrock# 13*24db4641Seschrock# When distributing Covered Code, include this CDDL HEADER in each 14*24db4641Seschrock# file and include the License file at usr/src/OPENSOLARIS.LICENSE. 15*24db4641Seschrock# If applicable, add the following below this CDDL HEADER, with the 16*24db4641Seschrock# fields enclosed by brackets "[]" replaced with your own identifying 17*24db4641Seschrock# information: Portions Copyright [yyyy] [name of copyright owner] 18*24db4641Seschrock# 19*24db4641Seschrock# CDDL HEADER END 20*24db4641Seschrock# 21*24db4641Seschrock# 22*24db4641Seschrock# Copyright 2007 Sun Microsystems, Inc. All rights reserved. 23*24db4641Seschrock# Use is subject to license terms. 24*24db4641Seschrock# 25*24db4641Seschrock#ident "%Z%%M% %I% %E% SMI" 26*24db4641Seschrock 27*24db4641Seschrockinclude ../../Makefile.lib 28*24db4641Seschrockinclude ../Makefile.lib 29*24db4641Seschrock 30*24db4641SeschrockHDRDIR= common 31*24db4641SeschrockFMHDRS= libdiskstatus.h 32*24db4641Seschrock 33*24db4641SeschrockSUBDIRS= $(MACH) 34*24db4641Seschrock$(BUILD64)SUBDIRS += $(MACH64) 35*24db4641Seschrock 36*24db4641Seschrockall := TARGET= all 37*24db4641Seschrockclean := TARGET= clean 38*24db4641Seschrockclobber := TARGET= clobber 39*24db4641Seschrockinstall := TARGET= install 40*24db4641Seschrocklint := TARGET= lint 41*24db4641Seschrock 42*24db4641Seschrock.KEEP_STATE: 43*24db4641Seschrock 44*24db4641Seschrockall clean clobber install lint: $(SUBDIRS) 45*24db4641Seschrock 46*24db4641Seschrockinstall_h: $(ROOTFMHDRS) 47*24db4641Seschrock 48*24db4641Seschrockcheck: $(CHECKHDRS) 49*24db4641Seschrock 50*24db4641Seschrock$(SUBDIRS): FRC 51*24db4641Seschrock @cd $@; pwd; $(MAKE) $(TARGET) 52*24db4641Seschrock 53*24db4641SeschrockFRC: 54*24db4641Seschrock 55*24db4641Seschrockinclude ../../Makefile.targ 56*24db4641Seschrockinclude ../Makefile.targ 57