# 
# Mach Operating System
# Copyright (c) 1992 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 "AS IS"
# 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 Mellon 
# the rights to redistribute these changes.
#  
# HISTORY
# $Log:	Makeconf,v $
# Revision 2.2  92/02/02  12:59:54  rpd
# 	Revised for the new Makefile organization.
# 	[92/01/30            rpd]
# 

# Cross-compilation support:
atsys=${ATSYS?${ATSYS}:@sys}

# Where objects get made:
OBJECTDIR=../../obj/${atsys}/poe

# Where stuff gets installed:
INSTALLDIR=${MAKECONF;(.*)/src/poe/Makeconf;\1/release/${atsys}}

# Where stuff gets released (copied from FRELEASEDIR to TRELEASEDIR):
# These are default values that one often overrides for a 'make release'.
FRELEASEDIR=${INSTALLDIR}
TRELEASEDIR=/usr/mach3

# Adjust paths so we find our own stuff:
# Recursive makes should pass down PATH, CPATH, and LPATH
# to override the definitions here.  This prevents
# the paths from being adjusted again in the submake.

PATH=${INSTALLDIR}/bin:${PATH}
CPATH=${INSTALLDIR}/include:${CPATH}
LPATH=${INSTALLDIR}/lib:${LPATH}

.EXPORT:	PATH CPATH LPATH
