#!/bin/sh

# This script is optional, it is not an official part of the XCSoar
# build scripts.

DIR=`dirname $0`
SYSTEM=`uname -s 2>/dev/null`

# Test if running on a Mac or Linux machine:

case "${SYSTEM}" in
"Darwin" | "Linux")
  ${DIR}/configure-unix.sh
  ;;
esac

echo "Now run
     make TARGET=<t>
to build XCSoar.  See README for valid targets."
