#!/bin/sh . ../functions.sh touch config.omk-default QTDIR=/usr/share/qt4 export QTDIR [ -d $QTDIR ] || canttest "Can't find QT4 instalation" cp Makefile1.omk Makefile.omk make || error "QT compilation" [ -x _compiled/bin/qtapp ] || error "QT application was not compiled" make clean || error "QT clean 1" cp Makefile2.omk Makefile.omk make || error "QT Compilation in subdir" [ -x _compiled/bin/qtapp ] || error "QT application was not compiled" make clean || error "QT clean 2" cp Makefile3.omk Makefile.omk make || error "QT_PROJECT test " [ -x _compiled/bin/qtapp ] || error "QT application was not compiled" make clean || error "QT clean 3"