529c0ac3d2
Signed-off-by: Kevin Fenzi <kevin@scrye.com>
18 lines
295 B
Makefile
18 lines
295 B
Makefile
XMLFILES=$(addprefix ../, $(shell cat POTFILES.in))
|
|
POFILES=$(wildcard *.po)
|
|
|
|
# intltool hack
|
|
top_srcdir=..
|
|
|
|
all:
|
|
|
|
comps.pot: $(XMLFILES)
|
|
intltool-update --pot --gettext-package=comps
|
|
|
|
|
|
report:
|
|
for cat in *.po; do \
|
|
echo -n "$$cat: "; \
|
|
msgfmt -v --statistics -o /dev/null $$cat; \
|
|
done
|