#!/bin/sh

tmp=`uname -a | fgrep x86_64`

# Edit the following line to point to the directory where you
# installed CCL, which likely ends in ccl/ccl.
export CCL_DEFAULT_DIRECTORY=/u/kaufmann/projects/vstte-2012/test/ccl/ccl

if [ "$tmp" != "" ] ; then \
    echo "Starting 64-bit CCL" ; \
    ${CCL_DEFAULT_DIRECTORY}/scripts/ccl64 $* ; \
else \
    echo "Starting 32-bit CCL" ; \
    ${CCL_DEFAULT_DIRECTORY}/scripts/ccl $* ; \
fi
