1#!/bin/sh
2files=`find . -name \*.rc -o -name \*.ui`
3if [ "x$files" != "x" ]; then
4	$EXTRACTRC $files >> rc.cpp
5fi
6$XGETTEXT `find . -name \*.cc -o -name \*.cpp -o -name \*.h` -o $podir/kdevexecute.pot
7rm -f rc.cpp
8