home *** CD-ROM | disk | FTP | other *** search
/ Dream 52 / Amiga_Dream_52.iso / OS2 / gnuinfo.zip / info / Makefile.am < prev    next >
Makefile  |  1997-07-04  |  2KB  |  45 lines

  1. ## Makefile.am for texinfo/info.
  2. ## $Id: Makefile.am,v 1.8 1997/07/04 21:02:08 karl Exp $
  3. ## Run automake in .. to produce Makefile.in from this.
  4.  
  5. noinst_PROGRAMS = makedoc
  6.  
  7. # Use `ginfo' for building to avoid confusion with the standard `info'
  8. # target.  The install rule removes the `g' before applying any
  9. # user-specified name transformations.
  10. bin_PROGRAMS = ginfo
  11. transform = s/ginfo/info/; @program_transform_name@
  12.  
  13. localedir = $(datadir)/locale
  14.  
  15. # -I. for funs.h.
  16. INCLUDES = -I. -I$(top_srcdir)/lib -I../intl -DLOCALEDIR=\"$(localedir)\"
  17. LDADD = ../lib/libtxi.a @TERMLIBS@ @INTLLIBS@
  18.  
  19. makedoc_SOURCES = makedoc.c
  20. ginfo_SOURCES = dir.c display.c display.h doc.c doc.h dribble.c dribble.h \
  21.   echo-area.c echo-area.h \
  22.   filesys.c filesys.h footnotes.c footnotes.h funs.h gc.c gc.h \
  23.   indices.c indices.h info-utils.c info-utils.h info.c info.h infodoc.c \
  24.   infomap.c infomap.h m-x.c man.c man.h nodemenu.c nodes.c nodes.h \
  25.   search.c search.h session.c session.h signals.c signals.h \
  26.   termdep.h terminal.c terminal.h tilde.c tilde.h \
  27.   variables.c variables.h window.c window.h
  28.  
  29. EXTRA_DIST = README
  30.  
  31. # The files `doc.c' and `funs.h' are created by ./makedoc run over the source
  32. # files which contain DECLARE_INFO_COMMAND.  `funs.h' is a header file
  33. # listing the functions found.  `doc.c' is a structure containing pointers
  34. # to those functions along with completable names and documentation strings.
  35. # I do not know how to get this right.
  36. # BUILT_SOURCES = doc.c funs.h
  37. #
  38. #cmd_sources = $(srcdir)/session.c $(srcdir)/echo-area.c $(srcdir)/infodoc.c \
  39. #  $(srcdir)/m-x.c $(srcdir)/indices.c $(srcdir)/nodemenu.c \
  40. #  $(srcdir)/footnotes.c $(srcdir)/variables.c
  41. #
  42. #$(BUILTSOURCES): makedoc $(cmd_sources)
  43. #    ./makedoc $(cmd_sources)
  44.