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