# global Makefile for all source directories
# Sun Jan 28 22:23:07 MET 1996 GM: created
# 96/02/26 15:13:36 muellerg: distTLI added
# 96/03/17 05:53:51 muellerg: added perf2

all: libcommon.a
	(cd common; make)
	(cd local; make)
	(cd distSOCKET; make)
	(cd environment; make)
	(cd performance; make)
	(cd rpc; make)
	(cd distTLI; make)

lib:
	(cd common; make lib)	

libcommon.a:
	(cd common; make lib)

clean:
	(cd common; make clean)
	(cd local; make clean)
	(cd distSOCKET; make clean)
	(cd distTLI; make clean)
	(cd environment; make clean)
	(cd performance; make clean)
	(cd rpc; make clean)
	rm -f *.o *~

purge:
	(cd common; make purge)
	(cd local; make purge)
	(cd distSOCKET; make purge)
	(cd distTLI; make purge)
	(cd environment; make purge)
	(cd performance; make purge)
	(cd rpc; make purge)
	rm -f libcommon.a
