xref: /illumos-gate/usr/src/lib/krb5/kadm5/Makefile (revision 7c478bd9)
1*7c478bd9Sstevel@tonic-gate#
2*7c478bd9Sstevel@tonic-gate# Copyright 2004 Sun Microsystems, Inc.  All rights reserved.
3*7c478bd9Sstevel@tonic-gate# Use is subject to license terms.
4*7c478bd9Sstevel@tonic-gate#
5*7c478bd9Sstevel@tonic-gate# ident	"%Z%%M%	%I%	%E% SMI"
6*7c478bd9Sstevel@tonic-gate#
7*7c478bd9Sstevel@tonic-gate# lib/krb5/kadm5/Makefile
8*7c478bd9Sstevel@tonic-gate#
9*7c478bd9Sstevel@tonic-gate# include global definitions
10*7c478bd9Sstevel@tonic-gateinclude ../../../Makefile.master
11*7c478bd9Sstevel@tonic-gate
12*7c478bd9Sstevel@tonic-gate#
13*7c478bd9Sstevel@tonic-gate# Build everything in parallel; use .WAIT for dependencies
14*7c478bd9Sstevel@tonic-gate.PARALLEL: $(SUBDIRS)
15*7c478bd9Sstevel@tonic-gate
16*7c478bd9Sstevel@tonic-gateSUBDIRS= clnt srv
17*7c478bd9Sstevel@tonic-gate
18*7c478bd9Sstevel@tonic-gateall :=		TARGET= all
19*7c478bd9Sstevel@tonic-gateclean :=	TARGET= clean
20*7c478bd9Sstevel@tonic-gateclobber :=	TARGET= clobber
21*7c478bd9Sstevel@tonic-gateinstall :=	TARGET= install
22*7c478bd9Sstevel@tonic-gatelint :=		TARGET= lint
23*7c478bd9Sstevel@tonic-gate_msg :=		TARGET= _msg
24*7c478bd9Sstevel@tonic-gate
25*7c478bd9Sstevel@tonic-gate.KEEP_STATE:
26*7c478bd9Sstevel@tonic-gate
27*7c478bd9Sstevel@tonic-gateall clean clobber install lint _msg: $(SUBDIRS)
28*7c478bd9Sstevel@tonic-gate
29*7c478bd9Sstevel@tonic-gate$(SUBDIRS): FRC
30*7c478bd9Sstevel@tonic-gate	@cd $@; pwd; $(MAKE) $(TARGET)
31*7c478bd9Sstevel@tonic-gate
32*7c478bd9Sstevel@tonic-gateFRC:
33