#!/bin/sh

PROG=ROX-Filer

APP_DIR=`dirname $0`
APP_DIR=`cd $APP_DIR;pwd`; export APP_DIR

ARCH=`uname -m`
case $ARCH in
	i?86) ARCH=ix86 ;;
esac

PLATFORM=`uname -s`-$ARCH

DEBUGGER=""
case $1 in
	--debug) shift ; DEBUGGER=gdb ;;
	--compile)
		if [ ! -d $APP_DIR/src ] ; then
			echo "ERROR from $0:" >&2
			echo "Cannot compile - source code is missing!" >&2
			exit 1
		fi
		echo "Compiling $APP_DIR... please wait..." >&2
		rm -f $APP_DIR/src/config.cache
		cd $APP_DIR/src && ./configure --bindir=$APP_DIR/$PLATFORM \
			&& make clean && make && echo Done >&2 && exit 0
		echo Compile failed >&2
		exit 1
esac

BIN=$APP_DIR/$PLATFORM/$PROG

if [ -x $BIN ] ; then
  exec $DEBUGGER $BIN "$@"
else
  echo "ERROR from $0:" >&2
  echo "I cannot find an executable file for your host type ($PLATFORM)." >&2
  echo "Try using the --compile option." >&2
  exit 1
fi
