xref: /illumos-gate/usr/src/cmd/krb5/Makefile (revision 7c478bd9)
1#
2# Copyright 2003 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	slave
21
22all :=		TARGET= all
23clean :=	TARGET= clean
24clobber :=	TARGET= clobber
25delete :=	TARGET= delete
26install :=	TARGET= install
27lint :=		TARGET= lint
28catalog :=	TARGET= catalog
29package :=	TARGET= package
30_msg :=		TARGET= _msg
31
32_msg:	$(SUBDIRS)
33
34.KEEP_STATE:
35
36
37all clean clobber delete install lint catalog package: $(SUBDIRS)
38
39check: $(CHECKHDRS)
40
41$(SUBDIRS):	FRC
42	@cd $@; pwd; $(MAKE) $(TARGET)
43
44FRC:
45