xref: /illumos-gate/usr/src/lib/krb5/Makefile (revision 241c90a0)
1#
2# Copyright 2007 Sun Microsystems, Inc.  All rights reserved.
3# Use is subject to license terms.
4#
5
6# include global definitions
7include ../../Makefile.master
8
9#
10# Build everything in parallel; use .WAIT for dependencies
11.PARALLEL:
12
13SUBDIRS= \
14	dyn	\
15	.WAIT	\
16	kdb	\
17	.WAIT	\
18	kadm5	\
19	.WAIT	\
20	ss	\
21	plugins
22
23all :=		TARGET= all
24install :=	TARGET= install
25clean :=	TARGET= clean
26clobber :=	TARGET= clobber
27_msg :=		TARGET= _msg
28
29.KEEP_STATE:
30
31all install clean clobber _msg: $(SUBDIRS)
32
33$(SUBDIRS): FRC
34	@cd $@; pwd; $(MAKE) $(TARGET)
35
36FRC:
37