############################################################################
# $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
#
############################################################################
include Rules.mk

all: rpc catalogs

rpc:
	rm -f *.bak *~
	for dir in src lib; do \
        (cd $$dir; $(MAKE) all); done

clobber:
	rm -f *.bak *~
	for dir in src lib; do \
        (cd $$dir; $(MAKE) clobber); done

clean:
	rm -f *.bak *~
	for dir in src lib; do \
        (cd $$dir; $(MAKE) clean); done

catalogs:
	cp ${RPC_MSG_CAT} ${NLS_DIR}
	cp ${UUID_MSG_CAT} ${NLS_DIR}
	cp ${IDL_MSG_CAT} ${NLS_DIR}

