home *** CD-ROM | disk | FTP | other *** search
/ Il CD di internet / CD.iso / SOURCE / D / CLISP / CLISPSRC.TAR / clisp-1995-01-01 / src / readline / doc / Makefile < prev    next >
Encoding:
Makefile  |  1994-06-19  |  3.2 KB  |  116 lines

  1. # This file was generated automatically by configure.  Do not edit.
  2. VPATH = .
  3. links = 
  4. host_alias = linux
  5. host_cpu = i386
  6. host_vendor = unknown
  7. host_os = linux
  8. target_alias = linux
  9. target_cpu = i386
  10. target_vendor = unknown
  11. target_os = linux
  12. ALL=all.internal
  13. ## Copyright (C) 1993 Free Software Foundation, Inc.
  14.  
  15. # Makefile for Readline documentation.
  16. # Makefile.in -- changed by Bruno Haible, 19 June 1994
  17.  
  18. # This program is free software; you can redistribute it and/or modify
  19. # it under the terms of the GNU General Public License as published by
  20. # the Free Software Foundation; either version 2 of the License, or
  21. # (at your option) any later version.
  22. # This program is distributed in the hope that it will be useful,
  23. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  24. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  25. # GNU General Public License for more details.
  26. # You should have received a copy of the GNU General Public License
  27. # along with this program; if not, write to the Free Software
  28. # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  29.  
  30. srcdir = .
  31.  
  32. prefix = /usr/local
  33.  
  34. infodir = $(prefix)/info
  35.  
  36. SHELL = /bin/sh
  37.  
  38. INSTALL = install -c
  39. INSTALL_DATA = $(INSTALL)
  40.  
  41. # where to find texinfo
  42. TEXIDIR=$(srcdir)/../../texinfo
  43.  
  44. # where to find makeinfo, preferably one designed for texinfo-2
  45. MAKEINFO=makeinfo
  46.  
  47. # auxiliary program for sorting Texinfo indices
  48. TEXINDEX=texindex
  49.  
  50. # Don Knuth's TeX formatter
  51. TEX=tex
  52.  
  53. #### Host, target, and site specific Makefile fragments come in here.
  54. ###
  55.  
  56. all: info dvi
  57.  
  58. install: install-info
  59.  
  60. info: history.info readline.info
  61.  
  62. dvi: history.dvi readline.dvi
  63.  
  64. install-info: info
  65.     -parent=`echo $(infodir)|sed -e 's@/[^/]*$$@@'`; \
  66.     if [ -d $$parent ] ; then true ; else mkdir $$parent ; fi
  67.     -if [ -d $(infodir) ] ; then true ; else mkdir $(infodir) ; fi
  68.     for i in *.info* ; do \
  69.         $(INSTALL_DATA) $$i $(infodir)/$$i ; \
  70.     done
  71.  
  72. history.info: hist.texinfo hsuser.texinfo hstech.texinfo
  73.     $(MAKEINFO) -I $(srcdir) -o ./history.info $(srcdir)/hist.texinfo
  74.  
  75. history.dvi: hist.texinfo hsuser.texinfo hstech.texinfo $(TEXIDIR)/texinfo.tex
  76.     TEXINPUTS=${TEXIDIR}:$(srcdir):$$TEXINPUTS $(TEX) hist.texinfo
  77.     $(TEXINDEX) hist.??
  78.     TEXINPUTS=${TEXIDIR}:$(srcdir):$$TEXINPUTS $(TEX) hist.texinfo
  79.  
  80. readline.info: rlman.texinfo rluser.texinfo rltech.texinfo
  81.     $(MAKEINFO) -I $(srcdir) -o ./readline.info $(srcdir)/rlman.texinfo
  82.  
  83. readline.dvi: rlman.texinfo rluser.texinfo rltech.texinfo
  84.     TEXINPUTS=${TEXIDIR}:$(srcdir):$$TEXINPUTS $(TEX) rlman.texinfo
  85.     $(TEXINDEX) rlman.??
  86.     TEXINPUTS=${TEXIDIR}:$(srcdir):$$TEXINPUTS $(TEX) rlman.texinfo
  87.  
  88. rluserman.info: rluserman.texinfo rluser.texinfo
  89.     $(MAKEINFO) -I $(srcdir) -o ./rluserman.info $(srcdir)/rluserman.texinfo
  90.  
  91. rluserman.dvi: rluserman.texinfo rluser.texinfo
  92.     TEXINPUTS=${TEXIDIR}:$(srcdir):$$TEXINPUTS $(TEX) rluserman.texinfo
  93.     $(TEXINDEX) rluserman.??
  94.     TEXINPUTS=${TEXIDIR}:$(srcdir):$$TEXINPUTS $(TEX) rluserman.texinfo
  95.  
  96. distclean: clean
  97.     rm -f Makefile config.status
  98.  
  99. mostlyclean: clean
  100.  
  101. realclean: distclean
  102.  
  103. clean: clean-info clean-dvi
  104.  
  105. clean-info:
  106.     rm -f history.info* readline.info*
  107.  
  108. clean-dvi:
  109.     rm -f hist.?? hist.???
  110.     rm -f rlman.?? rlman.???
  111.  
  112. Makefile: $(srcdir)/Makefile.in $(host_makefile_frag) $(target_makefile_frag)
  113.     $(SHELL) ./config.status
  114.