#
# This is the library sub-master makefile.
# A "make" (or "make all") at this level will build any unbuilt libraries.
# A "make clean" will remove all of the objects and libraries 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 enetlib
	make all
	cd ..
	cd overlib
	make all
	cd ..
	cd sesslib
	make all
	cd ..
	cd tcplib
	make all
	cd ..
	cd teklib
	make all
	cd ..
	cd vjclib
	make all
	cd ..
	cd vslib
	make all
	cd ..
	cd ncsalib
	make all
	cd ..
   	cd api
   	make all
   	cd ..
	cd ascii
	make all
	cd ..
   	cd ctlr
    	make all
    	cd ..
	cd general
	make all
	cd ..
	cd sys_dos
	make all
	cd ..

clean:
	cd enetlib
	make clean
	cd ..
	cd overlib
	make clean
	cd ..
	cd sesslib
	make clean
	cd ..
	cd tcplib
	make clean
	cd ..
	cd teklib
	make clean
	cd ..
	cd vjclib
	make clean
	cd ..
	cd vslib
	make clean
	cd ..
	cd ncsalib
	make clean
	cd ..
   	cd api
   	make clean
   	cd ..
	cd ascii
	make clean
	cd ..
   	cd ctlr
    	make clean
    	cd ..
	cd general
	make clean
	cd ..
	cd sys_dos
	make clean
	cd ..


world: clean all


