blob: 879f17a6c015bd9939af9620059a4dbe14e8f887 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
PMSFILES = $(shell find .. -name "*.pm" | grep -v "^../po" | grep -v "^../c/")
PMSCFILES = $(PMSFILES:%=%_.c)
POFILES = $(shell ls *.po)
all: $(POFILES)
clean:
rm -f empty.po $(POFILES:%=%t) $(PMSCFILES)
$(POFILES): panoramix.pot
cp -f $@ $@t
msgmerge $@t $< > $@
rm $@t
panoramix.pot: $(PMSFILES)
$(MAKE) $(PMSCFILES);
xgettext -F -n --keyword=_ --keyword=__ -o panoramix.pot $(PMSCFILES)
rm $(PMSCFILES)
$(PMSCFILES): %_.c: %
perl -pe 's|#(.*)|/*\1*\/|; s|$$|\\n\\|' $< > $@
|