home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 1 / ADE-1.bin / ade-dist / octave-1.1.1p1-src.tgz / tar.out / fsf / octave / readline / doc / Makefile.in < prev    next >
Makefile  |  1996-09-28  |  925b  |  61 lines

  1. #
  2. # Makefile for octave's readline/doc directory
  3. #
  4. # John W. Eaton
  5. # jwe@che.utexas.edu
  6. # Department of Chemical Engineering
  7. # The University of Texas at Austin
  8.  
  9. TOPDIR = ../..
  10.  
  11. srcdir = @srcdir@
  12. top_srcdir = @top_srcdir@
  13. VPATH = @srcdir@
  14.  
  15. include $(TOPDIR)/Makeconf
  16.  
  17. SOURCES = hist.texinfo hstech.texinfo hsuser.texinfo rlman.texinfo \
  18.     rltech.texinfo rluser.texinfo texindex.c
  19.  
  20. DISTFILES = Makefile.in $(SOURCES)
  21.  
  22. all: 
  23. .PHONY: all
  24.  
  25. check: all
  26. .PHONY: check
  27.  
  28. install: all
  29. .PHONY: install
  30.  
  31. uninstall:
  32. .PHONY: uninstall
  33.  
  34. tags: $(SOURCES)
  35.     ctags $(SOURCES)
  36.  
  37. TAGS: $(SOURCES)
  38.     etags $(SOURCES)
  39.  
  40. clean:
  41. .PHONY: clean
  42.  
  43. mostlyclean: clean
  44. .PHONY: mostlyclean
  45.  
  46. distclean: clean
  47.     rm -f Makefile
  48. .PHONY: distclean
  49.  
  50. realclean: distclean
  51.     rm -f tags TAGS
  52. .PHONY: realclean
  53.  
  54. local-dist:
  55.     ln $(DISTFILES) ../../`cat ../../.fname`/readline/doc
  56. .PHONY: local-dist
  57.  
  58. dist:
  59.     ln $(DISTFILES) ../../`cat ../../.fname`/readline/doc
  60. .PHONY: dist
  61.