1# Special Makefile rules for English message catalogs with quotation marks. 2# 3# Copyright (C) 2001-2017 Free Software Foundation, Inc. 4# This file, Rules-quot, and its auxiliary files (listed under 5# DISTFILES.common.extra1) are free software; the Free Software Foundation 6# gives unlimited permission to use, copy, distribute, and modify them. 7 8DISTFILES.common.extra1 = quot.sed boldquot.sed en@quot.header en@boldquot.header insert-header.sin Rules-quot 9 10.SUFFIXES: .insert-header .po-update-en 11 12en@quot.po-create: 13 $(MAKE) en@quot.po-update 14en@boldquot.po-create: 15 $(MAKE) en@boldquot.po-update 16 17en@quot.po-update: en@quot.po-update-en 18en@boldquot.po-update: en@boldquot.po-update-en 19 20.insert-header.po-update-en: 21 @lang=`echo $@ | sed -e 's/\.po-update-en$$//'`; \ 22 if test "$(PACKAGE)" = "gettext-tools" && test "$(CROSS_COMPILING)" != "yes"; then PATH=`pwd`/../src:$$PATH; GETTEXTLIBDIR=`cd $(top_srcdir)/src && pwd`; export GETTEXTLIBDIR; fi; \ 23 tmpdir=`pwd`; \ 24 echo "$$lang:"; \ 25 ll=`echo $$lang | sed -e 's/@.*//'`; \ 26 LC_ALL=C; export LC_ALL; \ 27 cd $(srcdir); \ 28 if $(MSGINIT) $(MSGINIT_OPTIONS) -i $(DOMAIN).pot --no-translator -l $$lang -o - 2>/dev/null \ 29 | $(SED) -f $$tmpdir/$$lang.insert-header | $(MSGCONV) -t UTF-8 | \ 30 { case `$(MSGFILTER) --version | sed 1q | sed -e 's,^[^0-9]*,,'` in \ 31 '' | 0.[0-9] | 0.[0-9].* | 0.1[0-8] | 0.1[0-8].*) \ 32 $(MSGFILTER) $(SED) -f `echo $$lang | sed -e 's/.*@//'`.sed \ 33 ;; \ 34 *) \ 35 $(MSGFILTER) `echo $$lang | sed -e 's/.*@//'` \ 36 ;; \ 37 esac } 2>/dev/null > $$tmpdir/$$lang.new.po \ 38 ; then \ 39 if cmp $$lang.po $$tmpdir/$$lang.new.po >/dev/null 2>&1; then \ 40 rm -f $$tmpdir/$$lang.new.po; \ 41 else \ 42 if mv -f $$tmpdir/$$lang.new.po $$lang.po; then \ 43 :; \ 44 else \ 45 echo "creation of $$lang.po failed: cannot move $$tmpdir/$$lang.new.po to $$lang.po" 1>&2; \ 46 exit 1; \ 47 fi; \ 48 fi; \ 49 else \ 50 echo "creation of $$lang.po failed!" 1>&2; \ 51 rm -f $$tmpdir/$$lang.new.po; \ 52 fi 53 54en@quot.insert-header: insert-header.sin 55 sed -e '/^#/d' -e 's/HEADER/en@quot.header/g' $(srcdir)/insert-header.sin > en@quot.insert-header 56 57en@boldquot.insert-header: insert-header.sin 58 sed -e '/^#/d' -e 's/HEADER/en@boldquot.header/g' $(srcdir)/insert-header.sin > en@boldquot.insert-header 59 60mostlyclean: mostlyclean-quot 61mostlyclean-quot: 62 rm -f *.insert-header 63