From: Will Estes Date: Sat, 15 Feb 2014 19:12:37 +0000 (-0500) Subject: Add make rule to rsync latest .po files from translation project. X-Git-Tag: v2.6.0~118 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=4c3209e737d802faaaf3e3308d70e3b7bb1af9eb;p=flex Add make rule to rsync latest .po files from translation project. The rule assumes that rsync is on the path and that there is exactly one domain listed in the DOMAIN make variable. The intent is that the rule will work with vpath builds. --- diff --git a/po/Rules-getpo b/po/Rules-getpo new file mode 100644 index 0000000..f0c4a11 --- /dev/null +++ b/po/Rules-getpo @@ -0,0 +1,9 @@ +# Rules to fetch the translation project's po files for a domain + +# Just rsync the *.po files for a particular textual domain into the +# po/ subdirectory of the project's source tree + +getpo: + rsync -Ltvz translationproject.org::tp/latest/flex/*.po $(top_srcdir)/po + +.PHONY: getpo