#
# Mach Operating System
# Copyright (c) 1991,1990,1989 Carnegie Mellon University
# All Rights Reserved.
# 
# Permission to use, copy, modify and distribute this software and its
# documentation is hereby granted, provided that both the copyright
# notice and this permission notice appear in all copies of the
# software, derivative works or modified versions, and any portions
# thereof, and that both notices appear in supporting documentation.
# 
# CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS 
# CONDITION.  CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND FOR
# ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE.
# 
# Carnegie Mellon requests users of this software to return to
# 
#  Software Distribution Coordinator  or  Software.Distribution@CS.CMU.EDU
#  School of Computer Science
#  Carnegie Mellon University
#  Pittsburgh PA 15213-3890
# 
# any improvements or extensions that they make and grant Carnegie the
# rights to redistribute these changes.
#  
# HISTORY
# $Log:	Makefile,v $
# Revision 2.8  90/10/25  14:41:25  rwd
# 	Don't make clean include area.
# 	[90/10/24            rwd]
# 
# Revision 2.7  90/09/09  14:30:48  rpd
# 	Added install : all
# 	[90/08/20            rwd]
# 
# Revision 2.6  90/06/02  14:44:48  rpd
# 	Release mig before building the include directory.
# 	[90/03/26  21:21:20  rpd]
# 
# Revision 2.5  89/12/08  19:51:53  rwd
# 	Fix thread make
# 	[89/11/30            rwd]
# 
# Revision 2.4  89/10/16  15:21:47  rwd
# 	Change include file make
# 	[89/10/05            rwd]
# 
# Revision 2.3  89/08/09  14:32:59  rwd
# 	Make clean libmach
# 	[89/08/07            rwd]
# 
# Revision 2.2  89/08/05  16:20:46  rwd
# 	First version
# 	[89/08/05  16:18:56  rwd]
# 
#

install: all

all:
	cd kernel;$(MAKE)
	cd kernel/src/mig;$(MAKE) release
	cd include;$(MAKE)
	cd user/libmach;$(MAKE) clean;$(MAKE)
	cd user/threads;$(MAKE)
	cd user;$(MAKE) install
