Makefile.in.in
上传用户:ledjyj
上传日期:2014-08-27
资源大小:2639k
文件大小:6k
源码类别:

驱动编程

开发平台:

Unix_Linux

  1. # Makefile for program source directory in GNU NLS utilities package.
  2. # Copyright (C) 1995, 1996, 1997 by Ulrich Drepper <drepper@gnu.ai.mit.edu>
  3. #
  4. # This file file be copied and used freely without restrictions.  It can
  5. # be used in projects which are not available under the GNU Public License
  6. # but which still want to provide support for the GNU gettext functionality.
  7. # Please note that the actual code is *not* freely available.
  8. #
  9. # - Modified by Owen Taylor <otaylor@redhat.com> to use GETTEXT_PACKAGE
  10. #   instead of PACKAGE and to look for po2tbl in ./ not in intl/
  11. #
  12. # - Modified by jacob berkman <jacob@ximian.com> to install
  13. #   Makefile.in.in and po2tbl.sed.in for use with glib-gettextize
  14. #
  15. # - Modified by Rodney Dawes <dobey@novell.com> for use with intltool
  16. #
  17. # We have the following line for use by intltoolize:
  18. # INTLTOOL_MAKEFILE
  19. GETTEXT_PACKAGE = @GETTEXT_PACKAGE@
  20. PACKAGE = @PACKAGE@
  21. VERSION = @VERSION@
  22. SHELL = /bin/sh
  23. srcdir = @srcdir@
  24. top_srcdir = @top_srcdir@
  25. top_builddir = ..
  26. VPATH = @srcdir@
  27. prefix = @prefix@
  28. exec_prefix = @exec_prefix@
  29. datadir = @datadir@
  30. datarootdir = @datarootdir@
  31. libdir = @libdir@
  32. DATADIRNAME = @DATADIRNAME@
  33. itlocaledir = $(prefix)/$(DATADIRNAME)/locale
  34. subdir = po
  35. install_sh = @install_sh@
  36. # Automake >= 1.8 provides @mkdir_p@.
  37. # Until it can be supposed, use the safe fallback:
  38. mkdir_p = $(install_sh) -d
  39. INSTALL = @INSTALL@
  40. INSTALL_DATA = @INSTALL_DATA@
  41. GMSGFMT = @GMSGFMT@
  42. MSGFMT = @MSGFMT@
  43. XGETTEXT = @XGETTEXT@
  44. INTLTOOL_UPDATE = @INTLTOOL_UPDATE@
  45. INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@
  46. MSGMERGE = INTLTOOL_EXTRACT=$(INTLTOOL_EXTRACT) srcdir=$(srcdir) $(INTLTOOL_UPDATE) --gettext-package $(GETTEXT_PACKAGE) --dist
  47. GENPOT   = INTLTOOL_EXTRACT=$(INTLTOOL_EXTRACT) srcdir=$(srcdir) $(INTLTOOL_UPDATE) --gettext-package $(GETTEXT_PACKAGE) --pot
  48. ALL_LINGUAS = @ALL_LINGUAS@
  49. PO_LINGUAS=$(shell if test -r $(srcdir)/LINGUAS; then grep -v "^#" $(srcdir)/LINGUAS; fi)
  50. POFILES=$(shell if test -n "$(PO_LINGUAS)"; then LINGUAS="$(PO_LINGUAS)"; else LINGUAS="$(ALL_LINGUAS)"; fi; for lang in $$LINGUAS; do printf "$$lang.po "; done)
  51. DISTFILES = ChangeLog Makefile.in.in POTFILES.in $(POFILES)
  52. EXTRA_DISTFILES = POTFILES.skip Makevars LINGUAS
  53. POTFILES = 
  54. #This Gets Replace for some reason
  55. CATALOGS=$(shell if test -n "$(PO_LINGUAS)"; then LINGUAS="$(PO_LINGUAS)"; else LINGUAS="$(ALL_LINGUAS)"; fi; for lang in $$LINGUAS; do printf "$$lang.gmo "; done)
  56. .SUFFIXES:
  57. .SUFFIXES: .po .pox .gmo .mo .msg .cat
  58. .po.pox:
  59. $(MAKE) $(GETTEXT_PACKAGE).pot
  60. $(MSGMERGE) $< $(GETTEXT_PACKAGE).pot -o $*.pox
  61. .po.mo:
  62. $(MSGFMT) -o $@ $<
  63. .po.gmo:
  64. file=`echo $* | sed 's,.*/,,'`.gmo 
  65.   && rm -f $$file && $(GMSGFMT) -o $$file $<
  66. .po.cat:
  67. sed -f ../intl/po2msg.sed < $< > $*.msg 
  68.   && rm -f $@ && gencat $@ $*.msg
  69. all: all-@USE_NLS@
  70. all-yes: $(CATALOGS)
  71. all-no:
  72. $(GETTEXT_PACKAGE).pot: $(POTFILES)
  73. $(GENPOT)
  74. install: install-data
  75. install-data: install-data-@USE_NLS@
  76. install-data-no: all
  77. install-data-yes: all
  78. $(mkdir_p) $(DESTDIR)$(itlocaledir)
  79. if test -n "$(PO_LINGUAS)"; then 
  80.   linguas="$(PO_LINGUAS)"; 
  81. else 
  82.   linguas="$(ALL_LINGUAS)"; 
  83. fi; 
  84. for lang in $$linguas; do 
  85.   dir=$(DESTDIR)$(itlocaledir)/$$lang/LC_MESSAGES; 
  86.   $(mkdir_p) $$dir; 
  87.   if test -r $$lang.gmo; then 
  88.     $(INSTALL_DATA) $$lang.gmo $$dir/$(GETTEXT_PACKAGE).mo; 
  89.     echo "installing $$lang.gmo as $$dir/$(GETTEXT_PACKAGE).mo"; 
  90.   else 
  91.     $(INSTALL_DATA) $(srcdir)/$$lang.gmo $$dir/$(GETTEXT_PACKAGE).mo; 
  92.     echo "installing $(srcdir)/$$lang.gmo as" 
  93.  "$$dir/$(GETTEXT_PACKAGE).mo"; 
  94.   fi; 
  95.   if test -r $$lang.gmo.m; then 
  96.     $(INSTALL_DATA) $$lang.gmo.m $$dir/$(GETTEXT_PACKAGE).mo.m; 
  97.     echo "installing $$lang.gmo.m as $$dir/$(GETTEXT_PACKAGE).mo.m"; 
  98.   else 
  99.     if test -r $(srcdir)/$$lang.gmo.m ; then 
  100.       $(INSTALL_DATA) $(srcdir)/$$lang.gmo.m 
  101. $$dir/$(GETTEXT_PACKAGE).mo.m; 
  102.       echo "installing $(srcdir)/$$lang.gmo.m as" 
  103.    "$$dir/$(GETTEXT_PACKAGE).mo.m"; 
  104.     else 
  105.       true; 
  106.     fi; 
  107.   fi; 
  108. done
  109. # Empty stubs to satisfy archaic automake needs
  110. dvi info tags TAGS ID:
  111. # Define this as empty until I found a useful application.
  112. installcheck:
  113. uninstall:
  114. if test -n "$(PO_LINGUAS)"; then 
  115.   linguas="$(PO_LINGUAS)"; 
  116. else 
  117.   linguas="$(ALL_LINGUAS)"; 
  118. fi; 
  119. for lang in $$linguas; do 
  120.   rm -f $(DESTDIR)$(itlocaledir)/$$lang/LC_MESSAGES/$(GETTEXT_PACKAGE).mo; 
  121.   rm -f $(DESTDIR)$(itlocaledir)/$$lang/LC_MESSAGES/$(GETTEXT_PACKAGE).mo.m; 
  122. done
  123. check: all $(GETTEXT_PACKAGE).pot
  124. mostlyclean:
  125. rm -f *.pox $(GETTEXT_PACKAGE).pot *.old.po cat-id-tbl.tmp
  126. rm -f .intltool-merge-cache
  127. clean: mostlyclean
  128. distclean: clean
  129. rm -f Makefile Makefile.in POTFILES stamp-it
  130. rm -f *.mo *.msg *.cat *.cat.m *.gmo
  131. maintainer-clean: distclean
  132. @echo "This command is intended for maintainers to use;"
  133. @echo "it deletes files that may require special tools to rebuild."
  134. rm -f Makefile.in.in
  135. distdir = ../$(PACKAGE)-$(VERSION)/$(subdir)
  136. dist distdir: $(DISTFILES)
  137. dists="$(DISTFILES)"; 
  138. extra_dists="$(EXTRA_DISTFILES)"; 
  139. for file in $$extra_dists; do 
  140.   test -f $(srcdir)/$$file && dists="$$dists $(srcdir)/$$file"; 
  141. done; 
  142. for file in $$dists; do 
  143.   test -f $$file || file="$(srcdir)/$$file"; 
  144.   ln $$file $(distdir) 2> /dev/null 
  145.     || cp -p $$file $(distdir); 
  146. done
  147. update-po: Makefile
  148. $(MAKE) $(GETTEXT_PACKAGE).pot
  149. tmpdir=`pwd`; 
  150. if test -n "$(PO_LINGUAS)"; then 
  151.   linguas="$(PO_LINGUAS)"; 
  152. else 
  153.   linguas="$(ALL_LINGUAS)"; 
  154. fi; 
  155. for lang in $$linguas; do 
  156.   echo "$$lang:"; 
  157.   result="`$(MSGMERGE) -o $$tmpdir/$$lang.new.po $$lang`"; 
  158.   if $$result; then 
  159.     if cmp $(srcdir)/$$lang.po $$tmpdir/$$lang.new.po >/dev/null 2>&1; then 
  160.       rm -f $$tmpdir/$$lang.new.po; 
  161.             else 
  162.       if mv -f $$tmpdir/$$lang.new.po $$lang.po; then 
  163.         :; 
  164.       else 
  165.         echo "msgmerge for $$lang.po failed: cannot move $$tmpdir/$$lang.new.po to $$lang.po" 1>&2; 
  166.         rm -f $$tmpdir/$$lang.new.po; 
  167.         exit 1; 
  168.       fi; 
  169.     fi; 
  170.   else 
  171.     echo "msgmerge for $$lang.gmo failed!"; 
  172.     rm -f $$tmpdir/$$lang.new.po; 
  173.   fi; 
  174. done
  175. Makefile POTFILES: stamp-it
  176. @if test ! -f $@; then 
  177.   rm -f stamp-it; 
  178.   $(MAKE) stamp-it; 
  179. fi
  180. stamp-it: Makefile.in.in ../config.status POTFILES.in
  181. cd .. 
  182.   && CONFIG_FILES=$(subdir)/Makefile.in CONFIG_HEADERS= CONFIG_LINKS= 
  183.        $(SHELL) ./config.status
  184. # Tell versions [3.59,3.63) of GNU make not to export all variables.
  185. # Otherwise a system limit (for SysV at least) may be exceeded.
  186. .NOEXPORT: