# ---------------------------------------------------------- 
#   (C)1995 Institute for New Generation Computer Technology 
#       (Read COPYRIGHT for detailed information.) 
#-----------------------------------------------------------
SUBDIR=pvm pvm-tcp

all:
clean:
	for d in $(SUBDIR); do (cd $$d; [ ! -f Makefile ] || make clean); done
	rm -f *~ \#* *.orig *.rej

realclean:
	for d in $(SUBDIR); \
	do (cd $$d; [ -f Makefile ] && make realclean)|| true;\
	done
	rm -f *~ *.orig *.rej
