1# 2# Copyright 2006 Sun Microsystems, Inc. All rights reserved. 3# Use is subject to license terms. 4# 5#pragma ident "%Z%%M% %I% %E% SMI" 6# 7# cmd/krb5/Makefile 8# 9# Build everything in parallel; use .WAIT for dependencies 10.PARALLEL: 11 12SUBDIRS= \ 13 kwarn .WAIT \ 14 krb5kdc \ 15 kadmin \ 16 kdestroy \ 17 kinit \ 18 klist \ 19 kproplog \ 20 krb5-config \ 21 slave 22 23all := TARGET= all 24clean := TARGET= clean 25clobber := TARGET= clobber 26delete := TARGET= delete 27install := TARGET= install 28lint := TARGET= lint 29catalog := TARGET= catalog 30package := TARGET= package 31_msg := TARGET= _msg 32 33_msg: $(SUBDIRS) 34 35.KEEP_STATE: 36 37 38all clean clobber delete install lint catalog package: $(SUBDIRS) 39 40check: $(CHECKHDRS) 41 42$(SUBDIRS): FRC 43 @cd $@; pwd; $(MAKE) $(TARGET) 44 45FRC: 46