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 / tools / Makefile.in < prev    next >
Makefile  |  1996-09-28  |  2KB  |  80 lines

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