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/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: 15*7c478bd9Sstevel@tonic-gate 16*7c478bd9Sstevel@tonic-gateSUBDIRS= \ 17*7c478bd9Sstevel@tonic-gate db2 \ 18*7c478bd9Sstevel@tonic-gate dyn \ 19*7c478bd9Sstevel@tonic-gate .WAIT \ 20*7c478bd9Sstevel@tonic-gate kdb \ 21*7c478bd9Sstevel@tonic-gate .WAIT \ 22*7c478bd9Sstevel@tonic-gate kadm5 \ 23*7c478bd9Sstevel@tonic-gate ss 24*7c478bd9Sstevel@tonic-gate 25*7c478bd9Sstevel@tonic-gateall := TARGET= all 26*7c478bd9Sstevel@tonic-gateinstall := TARGET= install 27*7c478bd9Sstevel@tonic-gateclean := TARGET= clean 28*7c478bd9Sstevel@tonic-gateclobber := TARGET= clobber 29*7c478bd9Sstevel@tonic-gatelint := TARGET= lint 30*7c478bd9Sstevel@tonic-gate_msg := TARGET= _msg 31*7c478bd9Sstevel@tonic-gate 32*7c478bd9Sstevel@tonic-gate.KEEP_STATE: 33*7c478bd9Sstevel@tonic-gate 34*7c478bd9Sstevel@tonic-gateall install clean clobber lint _msg: $(SUBDIRS) 35*7c478bd9Sstevel@tonic-gate 36*7c478bd9Sstevel@tonic-gate$(SUBDIRS): FRC 37*7c478bd9Sstevel@tonic-gate @cd $@; pwd; $(MAKE) $(TARGET) 38*7c478bd9Sstevel@tonic-gate 39*7c478bd9Sstevel@tonic-gateFRC: 40