home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 1 / ADE-1.bin / ade-dist / gettext-0.10.24-src.tgz / tar.out / fsf / gettext / src / Makefile.am < prev    next >
Makefile  |  1996-09-28  |  3KB  |  73 lines

  1. ## Makefile for program src directory in GNU NLS utilities package.
  2. ## Copyright (C) 1995, 1996 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.  
  18. ## Process this file with automake to produce Makefile.in.
  19.  
  20. AUTOMAKE_OPTIONS = 1.0 gnits
  21.  
  22. bin_PROGRAMS = gettext msgcmp msgfmt msgmerge msgunfmt xgettext
  23.  
  24. noinst_HEADERS = domain.h message.h po-gram.h po-hash.h po-lex.h po.h \
  25. str-list.h xget-lex.h po-gram.gen.h po-hash.gen.h dir-list.h
  26.  
  27. EXTRA_DIST = po-gram.y po-hash.y
  28.  
  29. datadir = $(prefix)/@DATADIRNAME@
  30. localedir = $(datadir)/locale
  31.  
  32. INCLUDES = -I$(srcdir) -I.. -I$(top_srcdir)/lib -I../intl -I$(top_srcdir)/intl
  33. DEFS = -DLOCALEDIR=\"$(localedir)\" @DEFS@
  34. LDADD = ../lib/libnlsut.a ../intl/libintl.a
  35.  
  36. SED = sed
  37. YACC = @YACC@
  38. YFLAGS = -d
  39.  
  40. # Source dependecies.
  41. gettext_SOURCES = gettextp.c
  42. msgcmp_SOURCES = message.c msgcmp.c open-po.c po-gram.gen.c po-hash.gen.c \
  43. po-lex.c po.c str-list.c dir-list.c
  44. msgfmt_SOURCES = msgfmt.c open-po.c po-gram.gen.c po-hash.gen.c po-lex.c po.c \
  45. str-list.c message.c dir-list.c
  46. msgmerge_SOURCES = message.c msgmerge.c open-po.c po-gram.gen.c po-hash.gen.c \
  47. po-lex.c po.c str-list.c dir-list.c
  48. msgunfmt_SOURCES = message.c msgunfmt.c str-list.c
  49. xgettext_SOURCES = message.c open-po.c po-gram.gen.c po-hash.gen.c po-lex.c \
  50. po.c str-list.c xget-lex.c xgettext.c dir-list.c
  51.  
  52. # Some rules for yacc handling.
  53. po-gram.gen.c po-gram.gen.h: po-gram.y
  54.     $(YACC) $(YFLAGS) $(srcdir)/po-gram.y
  55.     if test -s y.tab.c && test -s y.tab.h; then \
  56.       rm -f $(srcdir)/po-gram.gen.c $(srcdir)/po-gram.gen.h; \
  57.       $(SED) 's/[yY][yY]/po_gram_/g' < y.tab.c > $(srcdir)/po-gram.gen.c; \
  58.       $(SED) 's/[yY][yY]/po_gram_/g' < y.tab.h > $(srcdir)/po-gram.gen.h; \
  59.     fi
  60.     rm -f y.tab.c y.tab.h
  61.  
  62. po-hash.gen.c po-hash.gen.h: po-hash.y
  63.     $(YACC) $(YFLAGS) $(srcdir)/po-hash.y
  64.     if test -s y.tab.c && test -s y.tab.h; then \
  65.       rm -f $(srcdir)/po-hash.gen.c $(srcdir)/po-hash.gen.h; \
  66.       $(SED) 's/[yY][yY]/po_hash_/g' < y.tab.c > $(srcdir)/po-hash.gen.c; \
  67.       $(SED) 's/[yY][yY]/po_hash_/g' < y.tab.h > $(srcdir)/po-hash.gen.h; \
  68.     fi
  69.     rm -f y.tab.c y.tab.h
  70.  
  71. # Automake cannot handle this now.
  72. $(bin_PROGRAMS): ../lib/libnlsut.a ../intl/libintl.a
  73.