build
author Markus Bröker <mbroeker@largo.homelinux.org>
Tue, 02 Feb 2010 13:20:45 +0100
changeset 7 f23b595e590e
parent 4 fdf04a93faeb
permissions -rwxr-xr-x
Resize changes on newer qt versions

#!/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/debian_version ];
then
	./post-install;
else
	echo "Skipping post-install, handled by dpkg";
fi