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