File indexing completed on 2024-12-01 03:47:30
0001 # 0002 #!bin/sh 0003 # 0004 # invoke the extractrc script on all .ui, .rc, and .kcfg files in the sources 0005 # the results are stored in a pseudo .cpp file to be picked up by xgettext. 0006 $EXTRACTRC `find . -name \*.rc -o -name \*.ui -o -name \*.kcfg` >> rc.cpp 0007 # call xgettext on all source files. If your sources have other filename 0008 # extensions besides .cc, .cpp, and .h, just add them in the find call. 0009 $XGETTEXT `find . -name \*.cc -o -name \*.cpp -o -name \*.h` -o $podir/kmuddy.pot