home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 1 / ADE-1.bin / ade-dist / cvs-1.8.7-src.tgz / tar.out / fsf / cvs / contrib / elib / Makefile.in < prev    next >
Makefile  |  1996-09-28  |  2KB  |  80 lines

  1. # Makefile for elib distributed with GNU CVS.
  2.  
  3. # NOTE: this is only used for `make dist'.  To actually make elib
  4. # itself, you must unpack the elib tar file, build and install.
  5.  
  6. # Do not use this makefile directly, but only from `../Makefile'.
  7. # Copyright (C) 1986, 1988-1990 Free Software Foundation, Inc.
  8.  
  9. # This program is free software; you can redistribute it and/or modify
  10. # it under the terms of the GNU General Public License as published by
  11. # the Free Software Foundation; either version 2, or (at your option)
  12. # any later version.
  13.  
  14. # This program is distributed in the hope that it will be useful,
  15. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  16. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  17. # GNU General Public License for more details.
  18.  
  19. # You should have received a copy of the GNU General Public License
  20. # along with this program; if not, write to the Free Software
  21. # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  22.  
  23. # $CVSid: @(#)Makefile.in 1.6 94/10/22 $
  24.  
  25. SHELL = /bin/sh
  26.  
  27. srcdir     = @srcdir@
  28. top_srcdir = @top_srcdir@
  29. VPATH      = @srcdir@
  30.  
  31. prefix = @prefix@
  32. exec_prefix = @exec_prefix@
  33.  
  34. # Where to put the manual pages.
  35. mandir = $(prefix)/man
  36.  
  37. # Use cp if you don't have install.
  38. INSTALL = @INSTALL@
  39.  
  40. DISTFILES = ChangeLog README Makefile.in elib-1.0.tar.gz
  41.  
  42. all: Makefile
  43. .PHONY: all
  44.  
  45. install: all
  46.     @echo "You must unpack, build, and install elib yourself."
  47. .PHONY: install
  48.  
  49. tags:
  50. .PHONY: tags
  51.  
  52. TAGS:
  53. .PHONY: TAGS
  54.  
  55. ls:
  56.     @echo $(DISTFILES)
  57. .PHONY: ls
  58.  
  59. clean:
  60.     /bin/rm -f *.o core
  61. .PHONY: clean
  62.  
  63. distclean: clean
  64.     rm -f Makefile
  65. .PHONY: distclean
  66.  
  67. realclean: distclean
  68. .PHONY: realclean
  69.  
  70. dist-dir:
  71.     mkdir ${DISTDIR}
  72.     for i in ${DISTFILES}; do \
  73.       ln $(srcdir)/$${i} ${DISTDIR}; \
  74.     done
  75. .PHONY: dist-dir
  76.  
  77. subdir = contrib/elib
  78. Makefile: ../../config.status Makefile.in
  79.     cd ../.. && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= ./config.status
  80.