#  $Phone: Makefile,v 1.2 2013/01/02 23:00:42 christos Exp $
#  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	
