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