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 / examples / Makefile.in < prev    next >
Makefile  |  1996-09-28  |  868b  |  60 lines

  1. #
  2. # Makefile for octave's readline/examples 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 = fileman.c manexamp.c
  18.  
  19. DISTFILES = Inputrc Makefile.in $(SOURCES)
  20.  
  21. all: 
  22. .PHONY: all
  23.  
  24. check: all
  25. .PHONY: check
  26.  
  27. install: all
  28. .PHONY: install
  29.  
  30. uninstall:
  31. .PHONY: uninstall
  32.  
  33. tags: $(SOURCES)
  34.     ctags $(SOURCES)
  35.  
  36. TAGS: $(SOURCES)
  37.     etags $(SOURCES)
  38.  
  39. clean:
  40. .PHONY: clean
  41.  
  42. mostlyclean: clean
  43. .PHONY: mostlyclean
  44.  
  45. distclean: clean
  46.     rm -f Makefile
  47. .PHONY: distclean
  48.  
  49. realclean: distclean
  50.     rm -f tags TAGS
  51. .PHONY: realclean
  52.  
  53. local-dist:
  54.     ln $(DISTFILES) ../../`cat ../../.fname`/readline/examples
  55. .PHONY: local-dist
  56.  
  57. dist:
  58.     ln $(DISTFILES) ../../`cat ../../.fname`/readline/examples
  59. .PHONY: dist
  60.