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