xref: /illumos-gate/usr/src/cmd/krb5/Makefile (revision 54925bf60766fbb4f1f2d7c843721406a7b7a3fb)
1#
2# Copyright 2007 Sun Microsystems, Inc.  All rights reserved.
3# Use is subject to license terms.
4#
5#pragma ident	"%Z%%M%	%I%	%E% SMI"
6#
7# cmd/krb5/Makefile
8#
9# Build everything in parallel; use .WAIT for dependencies
10.PARALLEL:
11
12SUBDIRS= \
13	kwarn	.WAIT	\
14	krb5kdc \
15	kadmin	\
16	kdestroy	\
17	kinit	\
18	klist \
19	kproplog \
20	krb5-config \
21	slave \
22	ldap_util
23
24all :=		TARGET= all
25clean :=	TARGET= clean
26clobber :=	TARGET= clobber
27delete :=	TARGET= delete
28install :=	TARGET= install
29lint :=		TARGET= lint
30catalog :=	TARGET= catalog
31package :=	TARGET= package
32_msg :=		TARGET= _msg
33
34_msg:	$(SUBDIRS)
35
36.KEEP_STATE:
37
38
39all clean clobber delete install lint catalog package: $(SUBDIRS)
40
41check: $(CHECKHDRS)
42
43$(SUBDIRS):	FRC
44	@cd $@; pwd; $(MAKE) $(TARGET)
45
46FRC:
47