1*159d09a2SMark Phalan#
2*159d09a2SMark Phalan# CDDL HEADER START
3*159d09a2SMark Phalan#
4*159d09a2SMark Phalan# The contents of this file are subject to the terms of the
5*159d09a2SMark Phalan# Common Development and Distribution License (the "License").
6*159d09a2SMark Phalan# You may not use this file except in compliance with the License.
7*159d09a2SMark Phalan#
8*159d09a2SMark Phalan# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9*159d09a2SMark Phalan# or http://www.opensolaris.org/os/licensing.
10*159d09a2SMark Phalan# See the License for the specific language governing permissions
11*159d09a2SMark Phalan# and limitations under the License.
12*159d09a2SMark Phalan#
13*159d09a2SMark Phalan# When distributing Covered Code, include this CDDL HEADER in each
14*159d09a2SMark Phalan# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15*159d09a2SMark Phalan# If applicable, add the following below this CDDL HEADER, with the
16*159d09a2SMark Phalan# fields enclosed by brackets "[]" replaced with your own identifying
17*159d09a2SMark Phalan# information: Portions Copyright [yyyy] [name of copyright owner]
18*159d09a2SMark Phalan#
19*159d09a2SMark Phalan# CDDL HEADER END
20*159d09a2SMark Phalan#
21*159d09a2SMark Phalan#
22*159d09a2SMark Phalan# Copyright 2008 Sun Microsystems, Inc.  All rights reserved.
23*159d09a2SMark Phalan# Use is subject to license terms.
24*159d09a2SMark Phalan#
25*159d09a2SMark Phalan#
26*159d09a2SMark Phalan
27*159d09a2SMark Phalaninclude		$(SRC)/lib/krb5/Makefile.lib
28*159d09a2SMark Phalan
29*159d09a2SMark Phalaninclude $(SRC)/lib/gss_mechs/mech_krb5/Makefile.mech_krb5
30*159d09a2SMark Phalan
31*159d09a2SMark PhalanSUBDIRS=	$(MACH)
32*159d09a2SMark Phalan
33*159d09a2SMark Phalanall :=		TARGET= all
34*159d09a2SMark Phalanclean :=	TARGET= clean
35*159d09a2SMark Phalanclobber :=	TARGET= clobber
36*159d09a2SMark Phalaninstall :=	TARGET= install
37*159d09a2SMark Phalanlint :=		TARGET= lint
38*159d09a2SMark Phalan_msg :=		TARGET= _msg
39*159d09a2SMark Phalan
40*159d09a2SMark Phalan.KEEP_STATE:
41*159d09a2SMark Phalan
42*159d09a2SMark Phalanall clean clobber lint _msg: $(SUBDIRS)
43*159d09a2SMark Phalan
44*159d09a2SMark Phalan$(ROOTLIBDIR):
45*159d09a2SMark Phalan	$(INS.dir)
46*159d09a2SMark Phalan
47*159d09a2SMark Phalan$(ROOTLIBDIR)/%: %
48*159d09a2SMark Phalan	$(INS.file)
49*159d09a2SMark Phalan
50*159d09a2SMark Phalaninstall:   $(ROOTLIBDIR) $(SUBDIRS)
51*159d09a2SMark Phalan
52*159d09a2SMark Phalan$(SUBDIRS): FRC
53*159d09a2SMark Phalan	@cd $@; pwd; $(MAKE) $(TARGET)
54*159d09a2SMark Phalan
55*159d09a2SMark PhalanFRC:
56