blob: 6743ddaf9c23f62dfd133486452549e204215b42 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
PMSFILES = $(shell find .. -name "*.pm")
POFILES = $(wildcard *.po)
FROMPOFILES = $(POFILES:%.po=%.pm)
all: $(FROMPOFILES)
clean:
rm -f $(FROMPOFILES)
$(FROMPOFILES): %.pm: %.po
./po2perl < $< > $@
%.po: $(PMSFILES)
touch $@
for i in $(PMSFILES); do \
sed -e 's/#\(.*\)/\/*\1*\//' -e 's/$$/\\n\\/' < $$i > $${i}c; \
xgettext -j -F -Lc -n --omit-header --keyword=_ --keyword=__ -o $@ $${i}c; \
rm $${i}c; \
done
FORCE:
|