#!/bin/bash

# This works for qmake version 4.x and fails for qmake version 3 !
# 

rm -rf .moc .obj Makefile
find -name *~ -exec rm -f {} \;

rm -f *.o
qmake-qt4 -project .ui
qmake-qt4 -makefile

make all

if [ ! -f /etc/gentoo-release ]
then
	./post-install;
else
	echo "Skipping post-install, handled by ebuild";
fi

