xref: /illumos-gate/usr/src/cmd/krb5/Makefile (revision 10db1377)
17c478bd9Sstevel@tonic-gate#
2*10db1377Sgtb# Copyright 2006 Sun Microsystems, Inc.  All rights reserved.
37c478bd9Sstevel@tonic-gate# Use is subject to license terms.
47c478bd9Sstevel@tonic-gate#
57c478bd9Sstevel@tonic-gate#pragma ident	"%Z%%M%	%I%	%E% SMI"
67c478bd9Sstevel@tonic-gate#
77c478bd9Sstevel@tonic-gate# cmd/krb5/Makefile
87c478bd9Sstevel@tonic-gate#
97c478bd9Sstevel@tonic-gate# Build everything in parallel; use .WAIT for dependencies
107c478bd9Sstevel@tonic-gate.PARALLEL:
117c478bd9Sstevel@tonic-gate
127c478bd9Sstevel@tonic-gateSUBDIRS= \
137c478bd9Sstevel@tonic-gate	kwarn	.WAIT	\
147c478bd9Sstevel@tonic-gate	krb5kdc \
157c478bd9Sstevel@tonic-gate	kadmin	\
167c478bd9Sstevel@tonic-gate	kdestroy	\
177c478bd9Sstevel@tonic-gate	kinit	\
187c478bd9Sstevel@tonic-gate	klist \
197c478bd9Sstevel@tonic-gate	kproplog \
20*10db1377Sgtb	krb5-config \
217c478bd9Sstevel@tonic-gate	slave
227c478bd9Sstevel@tonic-gate
237c478bd9Sstevel@tonic-gateall :=		TARGET= all
247c478bd9Sstevel@tonic-gateclean :=	TARGET= clean
257c478bd9Sstevel@tonic-gateclobber :=	TARGET= clobber
267c478bd9Sstevel@tonic-gatedelete :=	TARGET= delete
277c478bd9Sstevel@tonic-gateinstall :=	TARGET= install
287c478bd9Sstevel@tonic-gatelint :=		TARGET= lint
297c478bd9Sstevel@tonic-gatecatalog :=	TARGET= catalog
307c478bd9Sstevel@tonic-gatepackage :=	TARGET= package
317c478bd9Sstevel@tonic-gate_msg :=		TARGET= _msg
327c478bd9Sstevel@tonic-gate
337c478bd9Sstevel@tonic-gate_msg:	$(SUBDIRS)
347c478bd9Sstevel@tonic-gate
357c478bd9Sstevel@tonic-gate.KEEP_STATE:
367c478bd9Sstevel@tonic-gate
377c478bd9Sstevel@tonic-gate
387c478bd9Sstevel@tonic-gateall clean clobber delete install lint catalog package: $(SUBDIRS)
397c478bd9Sstevel@tonic-gate
407c478bd9Sstevel@tonic-gatecheck: $(CHECKHDRS)
417c478bd9Sstevel@tonic-gate
427c478bd9Sstevel@tonic-gate$(SUBDIRS):	FRC
437c478bd9Sstevel@tonic-gate	@cd $@; pwd; $(MAKE) $(TARGET)
447c478bd9Sstevel@tonic-gate
457c478bd9Sstevel@tonic-gateFRC:
46