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