############################################################################
# $Id: Makefile,v 1.1.1.1 1996/06/30 00:08:56 mtp Exp $
############################################################################
# @Header@
############################################################################
# $Log: Makefile,v $
# Revision 1.1.1.1  1996/06/30 00:08:56  mtp
# Resubmission of PD DCE sources
#
# Revision 1.1.1.1  1995/12/31 05:20:05  mtp
# + Placed under CVS control
#
############################################################################
# 
# (c) Copyright 1994 OPEN SOFTWARE FOUNDATION, INC.
# (c) Copyright 1994 HEWLETT-PACKARD COMPANY
# (c) Copyright 1994 DIGITAL EQUIPMENT CORPORATION
# To anyone who acknowledges that this file is provided "AS IS"
# without any express or implied warranty:
#                 permission to use, copy, modify, and distribute this
# file for any purpose is hereby granted without fee, provided that
# the above copyright notices and this notice appears in all source
# code copies, and that none of the names of Open Software
# Foundation, Inc., Hewlett-Packard Company, or Digital Equipment
# Corporation be used in advertising or publicity pertaining to
# distribution of the software without specific, written prior
# permission.  Neither Open Software Foundation, Inc., Hewlett-
# Packard Company, nor Digital Equipment Corporation makes any
# representations about the suitability of this software for any
# purpose.
# 
include ../Rules.mk
all: rpc_dir

rpc_dir: dce_dir
	(cd rpc; $(MAKE) all)

dce_dir:
	(cd dce; $(MAKE) all)

clean:
	@rm -f *.bak
	for dir in rpc dce test/perf test/string; do \
	(cd $$dir; $(MAKE) clean); done

clobber:
	@rm -f *.bak
	for dir in rpc dce test/perf test/string; do \
	(cd $$dir; $(MAKE) clobber); done

apps: all
	for dir in test/perf test/string; do \
	(cd $$dir; $(MAKE) all); done
