#!/bin/sh
export MAKEBUNDLE=`pwd`/Makefiles
[ "`echo $OS | grep -i windows`" ] && export OS_TYPE=Windows
[ "`echo $OSTYPE | grep -i msys`" ] && export OS_TYPE=Windows
[ "`echo $OSTYPE | grep -i linux`" ] && export OS_TYPE=Linux
[ -z "$OS_TYPE" ] && echo "ERROR: OS_TYPE not set!" || echo "OS_TYPE = $OS_TYPE"
[ "$OS_TYPE" = Windows ] && export OS_DIR=WINDOWS
export OS_EXT=
[ "$OS_TYPE" = Windows ] && export OS_EXT=.exe
[ "$OS_TYPE" = Linux ] && export OS_DIR=LINUX
#make
