# 
# PCN System
#
# Please see the DISCLAIMER file in the top level directory of the
# distribution regarding the provisions under which this software
# is distributed.
#
# install_vars
#
# A script that can be sourced from a csh script to up all the
# constants regarding installation.  It assumes that the
# following variable is before this file is sourced:
#
#	INSTALL_BASE_DIR	: The base installation directory
#

#
# The following directories control the directories under which 
# the various components of the system are installed.  Normally,
# they are all under the INSTALL_BASE_DIR.  However, if you wish
# parts of the system to be installed elsewhere, then the following 
# variables can be modified to do so.
#
# INSTALL_BIN_DIR	: for the emulator binaries (pcn, pcncc, etc.)
# INSTALL_LIB_DIR	: for the PCN emulator library (libpcn.*.a)
#				and other such things
# INSTALL_INC_DIR	: for PCN include files (stdio.h)
# INSTALL_EX_DIR	: for PCN programming examples
# INSTALL_MAN_DIR	: for PCN man pages.  The actual man pages will be
#				installed under ${INSTALL_MAN_DIR}/man1.
# INSTALL_DOCS_DIR	: for other PCN documentation
# INST_DISC_FILE	: for the DISCLAIMER file
#
INSTALL_BIN_DIR="${INSTALL_BASE_DIR}/bin"
INSTALL_LIB_DIR="${INSTALL_BASE_DIR}/lib"
INSTALL_INC_DIR="${INSTALL_BASE_DIR}/include"
INSTALL_EX_DIR="${INSTALL_BASE_DIR}/examples"
INSTALL_MAN_DIR="${INSTALL_BASE_DIR}/man"
INSTALL_DOCS_DIR="${INSTALL_BASE_DIR}/docs"
INST_DISC_FILE="${INSTALL_BASE_DIR}/DISCLAIMER"
