1
2 all:
3 @for po_sun in $(POFILES); do \
4 po=$(PODIR)/$$po_sun; \
5 if test -f $$po; then \
6 echo "Merging $$po_sun ..."; \
7 msgcat --use-first $$po_sun $$po -o $$po; \
8 fi; \
9 done
10
11 top_builddir = ..
12 PODIR = $(top_builddir)/po
13 POFILES = $(wildcard *.po)
14
15