xref: /titanic_41/usr/src/lib/krb5/plugins/kdb/Makefile (revision 54925bf60766fbb4f1f2d7c843721406a7b7a3fb)
1*54925bf6Swillf#
2*54925bf6Swillf# CDDL HEADER START
3*54925bf6Swillf#
4*54925bf6Swillf# The contents of this file are subject to the terms of the
5*54925bf6Swillf# Common Development and Distribution License (the "License").
6*54925bf6Swillf# You may not use this file except in compliance with the License.
7*54925bf6Swillf#
8*54925bf6Swillf# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9*54925bf6Swillf# or http://www.opensolaris.org/os/licensing.
10*54925bf6Swillf# See the License for the specific language governing permissions
11*54925bf6Swillf# and limitations under the License.
12*54925bf6Swillf#
13*54925bf6Swillf# When distributing Covered Code, include this CDDL HEADER in each
14*54925bf6Swillf# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15*54925bf6Swillf# If applicable, add the following below this CDDL HEADER, with the
16*54925bf6Swillf# fields enclosed by brackets "[]" replaced with your own identifying
17*54925bf6Swillf# information: Portions Copyright [yyyy] [name of copyright owner]
18*54925bf6Swillf#
19*54925bf6Swillf# CDDL HEADER END
20*54925bf6Swillf#
21*54925bf6Swillf# Copyright 2007 Sun Microsystems, Inc.  All rights reserved.
22*54925bf6Swillf# Use is subject to license terms.
23*54925bf6Swillf#
24*54925bf6Swillf# ident	"%Z%%M%	%I%	%E% SMI"
25*54925bf6Swillf#
26*54925bf6Swillf# include global definitions
27*54925bf6Swillfinclude ../../../../Makefile.master
28*54925bf6Swillf
29*54925bf6Swillf#
30*54925bf6Swillf# Build everything in parallel; use .WAIT for dependencies
31*54925bf6Swillf.PARALLEL:
32*54925bf6Swillf
33*54925bf6SwillfSUBDIRS= \
34*54925bf6Swillf	db2 \
35*54925bf6Swillf	ldap
36*54925bf6Swillf
37*54925bf6Swillfall :=		TARGET= all
38*54925bf6Swillfinstall :=	TARGET= install
39*54925bf6Swillfclean :=	TARGET= clean
40*54925bf6Swillfclobber :=	TARGET= clobber
41*54925bf6Swillflint :=		TARGET= lint
42*54925bf6Swillf_msg :=		TARGET= _msg
43*54925bf6Swillf
44*54925bf6Swillf.KEEP_STATE:
45*54925bf6Swillf
46*54925bf6Swillfall install clean clobber lint _msg: $(SUBDIRS)
47*54925bf6Swillf
48*54925bf6Swillf$(SUBDIRS): FRC
49*54925bf6Swillf	@cd $@; pwd; $(MAKE) $(TARGET)
50*54925bf6Swillf
51*54925bf6SwillfFRC:
52