xref: /titanic_41/usr/src/lib/krb5/plugins/preauth/Makefile (revision 159d09a20817016f09b3ea28d1bdada4a336bb91)
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# Copyright 2008 Sun Microsystems, Inc.  All rights reserved.
22*159d09a2SMark Phalan# Use is subject to license terms.
23*159d09a2SMark Phalan#
24*159d09a2SMark Phalan#
25*159d09a2SMark Phalan# include global definitions
26*159d09a2SMark Phalaninclude ../../../../Makefile.master
27*159d09a2SMark Phalan
28*159d09a2SMark Phalan#
29*159d09a2SMark Phalan# Build everything in parallel; use .WAIT for dependencies
30*159d09a2SMark Phalan.PARALLEL:
31*159d09a2SMark Phalan
32*159d09a2SMark PhalanSUBDIRS= \
33*159d09a2SMark Phalan	pkinit
34*159d09a2SMark Phalan
35*159d09a2SMark Phalanall :=		TARGET= all
36*159d09a2SMark Phalaninstall :=	TARGET= install
37*159d09a2SMark Phalanclean :=	TARGET= clean
38*159d09a2SMark Phalanclobber :=	TARGET= clobber
39*159d09a2SMark Phalanlint :=		TARGET= lint
40*159d09a2SMark Phalan_msg :=		TARGET= _msg
41*159d09a2SMark Phalan
42*159d09a2SMark Phalan.KEEP_STATE:
43*159d09a2SMark Phalan
44*159d09a2SMark Phalanall install clean clobber lint _msg: $(SUBDIRS)
45*159d09a2SMark Phalan
46*159d09a2SMark Phalan$(SUBDIRS): FRC
47*159d09a2SMark Phalan	@cd $@; pwd; $(MAKE) $(TARGET)
48*159d09a2SMark Phalan
49*159d09a2SMark PhalanFRC:
50