File indexing completed on 2024-04-21 03:51:11

0001 #! /bin/sh
0002 # invoke the extractrc script on all .ui, .rc, and .kcfg files in the sources
0003 # the results are stored in a pseudo .cpp file to be picked up by xgettext.
0004 $EXTRACTRC `find . -name \*.rc -o -name \*.ui -o -name \*.kcfg` >> rc.cpp
0005 # call xgettext on all source files. If your sources have other filename
0006 # extensions besides .cc, .cpp, and .h, just add them in the find call.
0007 $XGETTEXT `find . -name \*.cpp -o -name \*.h` -o $podir/parley.pot
0008 # remove the generated files
0009 rm -f tips.cpp rc.cpp
0010