diff options
Diffstat (limited to 'perl-install/share/po/Makefile')
-rw-r--r-- | perl-install/share/po/Makefile | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/perl-install/share/po/Makefile b/perl-install/share/po/Makefile new file mode 100644 index 000000000..6743ddaf9 --- /dev/null +++ b/perl-install/share/po/Makefile @@ -0,0 +1,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:
\ No newline at end of file |