#
# This is the source master makefile.
# A "make" (or "make all") at this level will build all source.
# A "make clean" will remove all of the objects and binaries in the tree.
# A "make world" will do a clean then an all.
#

# Folks, I know this is disgusting, but until Borland releases a make that
# understads loops, this is the only way to do it. :( - JRM 4/27/93

all:
	cd telnet
	make all
	cd ..
	cd ping
	make all
	cd ..
	cd ftp
	make all
	cd ..
	cd lpr
	make all
	cd ..
	cd passwd
	make all
	cd ..

clean:
	cd telnet
	make clean
	cd ..
	cd ping
	make clean
	cd ..
	cd ftp
	make clean
	cd ..
	cd lpr
	make clean
	cd ..
	cd passwd
	make clean
	cd ..

world: clean all

