Makefile revision 7c478bd95313f5f23a4c958a745db2134aa03244
#
# Copyright 2003 Sun Microsystems, Inc. All rights reserved.
# Use is subject to license terms.
#
#pragma ident "%Z%%M% %I% %E% SMI"
#
# cmd/krb5/Makefile
#
# Build everything in parallel; use .WAIT for dependencies
.PARALLEL:
SUBDIRS= \
kwarn .WAIT \
krb5kdc \
kadmin \
kdestroy \
kinit \
klist \
kproplog \
slave
all := TARGET= all
clean := TARGET= clean
clobber := TARGET= clobber
delete := TARGET= delete
install := TARGET= install
lint := TARGET= lint
catalog := TARGET= catalog
package := TARGET= package
_msg := TARGET= _msg
_msg: $(SUBDIRS)
.KEEP_STATE:
all clean clobber delete install lint catalog package: $(SUBDIRS)
check: $(CHECKHDRS)
$(SUBDIRS): FRC
@cd $@; pwd; $(MAKE) $(TARGET)
FRC: