File indexing completed on 2024-05-05 04:41:03

0001 #!/bin/sh
0002 files=`find . -name \*.rc -o -name \*.ui`
0003 if [ "x$files" != "x" ]; then
0004         $EXTRACTRC $files >> rc.cpp
0005 fi
0006 $XGETTEXT `find . -name \*.cpp` -o $podir/kdevvcsprojectintegration.pot
0007 rm -f rc.cpp