Makefile.in
上传用户:xxcykj
上传日期:2007-01-04
资源大小:727k
文件大小:6k
源码类别:

Email客户端

开发平台:

Unix_Linux

  1. # Makefile for directory with message catalog handling in GNU NLS Utilities.
  2. # Copyright (C) 1995, 1996, 1997 Free Software Foundation, Inc.
  3. #
  4. # This program is free software; you can redistribute it and/or modify
  5. # it under the terms of the GNU General Public License as published by
  6. # the Free Software Foundation; either version 2, or (at your option)
  7. # any later version.
  8. #
  9. # This program is distributed in the hope that it will be useful,
  10. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  12. # GNU General Public License for more details.
  13. #
  14. # You should have received a copy of the GNU General Public License
  15. # along with this program; if not, write to the Free Software
  16. # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
  17. PACKAGE = @PACKAGE@
  18. VERSION = @VERSION@
  19. SHELL = /bin/sh
  20. srcdir = @srcdir@
  21. top_srcdir = @top_srcdir@
  22. top_builddir = ..
  23. VPATH = @srcdir@
  24. prefix = @prefix@
  25. exec_prefix = @exec_prefix@
  26. transform = @program_transform_name@
  27. libdir = $(exec_prefix)/lib
  28. includedir = $(prefix)/include
  29. datadir = $(prefix)/@DATADIRNAME@
  30. localedir = $(datadir)/locale
  31. gnulocaledir = $(prefix)/share/locale
  32. gettextsrcdir = @datadir@/gettext/intl
  33. aliaspath = $(localedir):.
  34. subdir = intl
  35. INSTALL = @INSTALL@
  36. INSTALL_DATA = @INSTALL_DATA@
  37. MKINSTALLDIRS = @MKINSTALLDIRS@
  38. l = @l@
  39. AR = ar
  40. CC = @CC@
  41. LIBTOOL = @LIBTOOL@
  42. RANLIB = @RANLIB@
  43. DEFS = -DLOCALEDIR="$(localedir)" -DGNULOCALEDIR="$(gnulocaledir)" 
  44. -DLOCALE_ALIAS_PATH="$(aliaspath)" @DEFS@
  45. CPPFLAGS = @CPPFLAGS@
  46. CFLAGS = @CFLAGS@
  47. LDFLAGS = @LDFLAGS@
  48. COMPILE = $(CC) -c $(DEFS) $(INCLUDES) $(CPPFLAGS) $(CFLAGS) $(XCFLAGS)
  49. HEADERS = $(COMHDRS) libgettext.h loadinfo.h
  50. COMHDRS = gettext.h gettextP.h hash-string.h
  51. SOURCES = $(COMSRCS) intl-compat.c cat-compat.c
  52. COMSRCS = bindtextdom.c dcgettext.c dgettext.c gettext.c 
  53. finddomain.c loadmsgcat.c localealias.c textdomain.c l10nflist.c 
  54. explodename.c
  55. OBJECTS = @INTLOBJS@ bindtextdom.$lo dcgettext.$lo dgettext.$lo gettext.$lo 
  56. finddomain.$lo loadmsgcat.$lo localealias.$lo textdomain.$lo l10nflist.$lo 
  57. explodename.$lo
  58. CATOBJS = cat-compat.$lo ../po/cat-id-tbl.$lo
  59. GETTOBJS = intl-compat.$lo
  60. DISTFILES.common = ChangeLog Makefile.in linux-msg.sed po2tbl.sed.in 
  61. xopen-msg.sed $(HEADERS) $(SOURCES)
  62. DISTFILES.normal = VERSION
  63. DISTFILES.gettext = libintl.glibc intlh.inst.in
  64. .SUFFIXES:
  65. .SUFFIXES: .c .o .lo
  66. .c.o:
  67. $(COMPILE) $<
  68. .c.lo:
  69. $(LIBTOOL) --mode=compile $(COMPILE) $<
  70. INCLUDES = -I.. -I. -I$(top_srcdir)/intl -I$(top_srcdir)/lib
  71. all: all-@USE_INCLUDED_LIBINTL@
  72. all-yes: libintl.$la intlh.inst
  73. all-no:
  74. libintl.a: $(OBJECTS)
  75. rm -f $@
  76. $(AR) cru $@ $(OBJECTS)
  77. $(RANLIB) $@
  78. libintl.la: $(OBJECTS)
  79. $(LIBTOOL) --mode=link $(CC) $(LDFLAGS) -o $@ $(OBJECTS) 
  80.    -version-info 1:0 -rpath $(libdir)
  81. ../po/cat-id-tbl.$lo: ../po/cat-id-tbl.c $(top_srcdir)/po/$(PACKAGE).pot
  82. cd ../po && $(MAKE) cat-id-tbl.$lo
  83. check: all
  84. # This installation goal is only used in GNU gettext.  Packages which
  85. # only use the library should use install instead.
  86. # We must not install the libintl.h/libintl.a files if we are on a
  87. # system which has the gettext() function in its C library or in a
  88. # separate library or use the catgets interface.  A special case is
  89. # where configure found a previously installed GNU gettext library.
  90. # If you want to use the one which comes with this version of the
  91. # package, you have to use `configure --with-included-gettext'.
  92. install: install-exec install-data
  93. install-exec: all
  94. if test "$(PACKAGE)" = "gettext" 
  95.    && test '@INTLOBJS@' = '$(GETTOBJS)'; then 
  96.   if test -r $(MKINSTALLDIRS); then 
  97.     $(MKINSTALLDIRS) $(libdir) $(includedir); 
  98.   else 
  99.     $(top_srcdir)/mkinstalldirs $(libdir) $(includedir); 
  100.   fi; 
  101.   $(INSTALL_DATA) intlh.inst $(includedir)/libintl.h; 
  102.   $(INSTALL_DATA) libintl.a $(libdir)/libintl.a; 
  103. else 
  104.   : ; 
  105. fi
  106. install-data: all
  107. if test "$(PACKAGE)" = "gettext"; then 
  108.   if test -r $(MKINSTALLDIRS); then 
  109.     $(MKINSTALLDIRS) $(gettextsrcdir); 
  110.   else 
  111.     $(top_srcdir)/mkinstalldirs $(gettextsrcdir); 
  112.   fi; 
  113.   $(INSTALL_DATA) VERSION $(gettextsrcdir)/VERSION; 
  114.   dists="$(DISTFILES.common)"; 
  115.   for file in $$dists; do 
  116.     $(INSTALL_DATA) $(srcdir)/$$file $(gettextsrcdir)/$$file; 
  117.   done; 
  118. else 
  119.   : ; 
  120. fi
  121. # Define this as empty until I found a useful application.
  122. installcheck:
  123. uninstall:
  124. dists="$(DISTFILES.common)"; 
  125. for file in $$dists; do 
  126.   rm -f $(gettextsrcdir)/$$file; 
  127. done
  128. info dvi:
  129. $(OBJECTS): ../config.h libgettext.h
  130. bindtextdom.$lo finddomain.$lo loadmsgcat.$lo: gettextP.h gettext.h loadinfo.h
  131. dcgettext.$lo: gettextP.h gettext.h hash-string.h loadinfo.h
  132. tags: TAGS
  133. TAGS: $(HEADERS) $(SOURCES)
  134. here=`pwd`; cd $(srcdir) && etags -o $$here/TAGS $(HEADERS) $(SOURCES)
  135. id: ID
  136. ID: $(HEADERS) $(SOURCES)
  137. here=`pwd`; cd $(srcdir) && mkid -f$$here/ID $(HEADERS) $(SOURCES)
  138. mostlyclean:
  139. rm -f *.a *.o *.lo core core.*
  140. clean: mostlyclean
  141. distclean: clean
  142. rm -f Makefile ID TAGS po2msg.sed po2tbl.sed
  143. maintainer-clean: distclean
  144. @echo "This command is intended for maintainers to use;"
  145. @echo "it deletes files that may require special tools to rebuild."
  146. # GNU gettext needs not contain the file `VERSION' but contains some
  147. # other files which should not be distributed in other packages.
  148. distdir = ../$(PACKAGE)-$(VERSION)/$(subdir)
  149. dist distdir: Makefile $(DISTFILES)
  150. if test "$(PACKAGE)" = gettext; then 
  151.   additional="$(DISTFILES.gettext)"; 
  152. else 
  153.   additional="$(DISTFILES.normal)"; 
  154. fi; 
  155. for file in $(DISTFILES.common) $$additional; do 
  156.   ln $(srcdir)/$$file $(distdir) 2> /dev/null 
  157.     || cp -p $(srcdir)/$$file $(distdir); 
  158. done
  159. dist-libc:
  160. tar zcvf intl-glibc.tar.gz $(COMSRCS) $(COMHDRS) libintl.h.glibc
  161. Makefile: Makefile.in ../config.status
  162. cd .. 
  163.   && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
  164. # The dependency for intlh.inst is different in gettext and all other
  165. # packages.  Because we cannot you GNU make features we have to solve
  166. # the problem while rewriting Makefile.in.
  167. @GT_YES@intlh.inst: intlh.inst.in ../config.status
  168. @GT_YES@ cd .. 
  169. @GT_YES@ && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= 
  170. @GT_YES@   $(SHELL) ./config.status
  171. @GT_NO@.PHONY: intlh.inst
  172. @GT_NO@intlh.inst:
  173. # Tell versions [3.59,3.63) of GNU make not to export all variables.
  174. # Otherwise a system limit (for SysV at least) may be exceeded.
  175. .NOEXPORT: