#
# Mach Operating System
# Copyright (c) 1989 Carnegie-Mellon University
# All rights reserved.  The CMU software License Agreement specifies
# the terms and conditions for use and redistribution.
#  
# HISTORY
# $Log:	Makefile,v $
# Revision 2.4  92/02/02  12:59:59  rpd
# 	Revised for the new Makefile organization.
# 	[92/01/30            rpd]
# 

include ${MAKETOP}Makefile-common

# We build these subdirectories; they must exist in the object directory.
# The mkodirs target will create them if necessary.

MKODIRS = emulator poe

# These subdirectories must exist in the install/release directories.
# The mkidirs and mkrdirs targets will create them.

MKIDIRS = include bin lib etc special man man/man1 man/man2 man/man3
MKRDIRS = ${MKIDIRS}

.INIT : mkodirs

all : install

RECURSE = ${RECURSE_TEMPLATE/DIRS/${MKODIRS}}

install : mkidirs
	+${RECURSE/TARGET/install}

release : mkrdirs
	+${RECURSE/TARGET/release}

clean :
	+${RECURSE/TARGET/clean}

-include Makedep
