#!/bin/bash -f
###########################################################################
#
# PrintCMDLiPaths
#
# - This script outputs cmdli.env file setups. It has to be executed
#   from the "src/cmdli" directory of MissionLab
#
# Written by: Yoichiro Endo
#
###########################################################################

# $Id: PrintCMDLiEnv,v 1.1.1.1 2008/07/14 16:44:15 endo Exp $

# Setting up the script
TARGET_OS=linux
CMDLI_HOME=$PWD
SUPPORT_DIR=$CMDLI_HOME/support

echo "#---------------------------------------------------------------------"
echo "# cmdli.paths: Automatically generated by '$0'"
echo "#---------------------------------------------------------------------"
echo "TARGET_OS = $TARGET_OS"
echo "SUPPORT_DIR = $SUPPORT_DIR"
echo "export TARGET_OS SUPPORT_DIR"
