From 61e87a9fb56f97ae843557511ba3609f9849cc2e Mon Sep 17 00:00:00 2001 From: Pascal Rigaux Date: Sun, 18 Jul 1999 19:16:10 +0000 Subject: *** empty log message *** --- perl-install/share/po/Makefile | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 perl-install/share/po/Makefile (limited to 'perl-install/share/po') 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 -- cgit v1.2.1