blob: a3fb140bbd25bbc6a0d9685b0a8c5e858d09e69a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
POFILES = AUTO
SUBDIRS = de
SHELL = /bin/sh
merge:
cd $(top_srcdir)/po; \
for subdir in $(SUBDIRS); do \
for potfile in *.pot; do \
if test "$$subdir" = "."; then :; else \
subname=$$(basename $$potfile .pot); \
$(MAKE) -f $(top_srcdir)/admin/Makefile.common package-merge POFILES="$$subdir/$$subname.po" PACKAGE="$$subname"; \
fi; \
done; \
done;
|