#
#  Master makefile for the phone program         18 December 1985
#
#  You'll need to edit the makefile in each of the subdirectories
#  to change the compilation flags.
# 

DIRS	=	client master conv

.DEFAULT:	
	for i in ${DIRS} ; do \
		cd $$i ; make MFLAGS="${MFLAGS}" $@ ; cd .. ; \
	done

default: all	
