# 
# Makefile for libraries
#
# x-kernel v3.1	12/10/90
#
# Copyright (C) 1990  Larry L. Peterson and Norman C. Hutchinson
#

#
#   Subdirectories below here are:
#
#	simul	simulator source
#	shared	shared (simulator & standalone) source
#	vax	vax binaries & library for use with simulator
#	sun	sun binaries & library for use with simulator
#	sun3	sun source, binaries, & library for standalone kernels


libs:
	cd $(ARCH); $(MAKE) -f ../shared/Makefile
	cd $(ARCH); $(MAKE) -f ../simul/Makefile
	-if [ $(ARCH) = sun ]; then cd sun3; $(MAKE); fi

clean:
	rm -f */*.o */libx*.a
