#!/bin/bash

if [ x"$1" == x"clean" ]
then
  make clean
  rm -rf strips.app Makefile .DS_Store blah.out output.png
else

  if [ `uname` == "Darwin" ]
  then
    qmake -spec macx-g++
    make
    ./strips.app/Contents/MacOS/strips
  fi

fi


