summaryrefslogtreecommitdiffstats
path: root/perl-install/share/po/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'perl-install/share/po/Makefile')
-rw-r--r--perl-install/share/po/Makefile22
1 files changed, 0 insertions, 22 deletions
diff --git a/perl-install/share/po/Makefile b/perl-install/share/po/Makefile
deleted file mode 100644
index ad4f9486b..000000000
--- a/perl-install/share/po/Makefile
+++ /dev/null
@@ -1,22 +0,0 @@
-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|#(.*)|/*\1*\/|; s|$$|\\n\\|' $< > $@
-