#! /bin/bash

# Script for building a release version of MoneyPenny and installing to /usr

qmake  "CONFIG+=release" moneypenny.pro
make
make PREFIX=/usr install
make clean