Comment out the URL to the Doxygen page.
[herrie-working.git] / updatestuff
blobcba9db02b2b7187c0d24a22e09fee8abbf481145
1 #!/bin/sh
3 set -e
5 # Make sure we are in the proper directory
6 cd `dirname $0`/herrie/src
8 # Update depends file
9 make -C ../../misc cdepcalc
10 ../../misc/cdepcalc
12 # Update translations
13 xgettext -k_ *.c
14 mv messages.po ../po/herrie.pot
16 cd ../po
17 for i in *.po
19 msgmerge $i herrie.pot > tmp.po
20 mv tmp.po $i
21 done